I have a regex that I wanted to trim the <br> of a variable
str1.replace(/^<br>|<br>$/g,'');
example i want to trim a string something like this
var str1 = "<br>hooray!<br>";
and i want it to be like this
var str = "hooray!";
but it seems not to be working...
what is the correct regex for removing the first and last <br> tag?

/^<br>|<br>$/g? – Josh Davenport Apr 24 '12 at 10:22