I have the following variable which contains the following string. I would like to remove both the <nobr>
and the </nobr>
and just leave what is inside.
alert(product_code);
produces
<nobr>209/00254/01</nobr>
How would I make a new variable that removes the <nobr>
tags?
var product_code = $(this).html();
alert(product_code);