I'd like to remove all <br/> <br /> or <br> tags from #id p. I tried $('#id p').find('br').remove(); but it doesn't seem to work.
<br/>
<br />
<br>
#id p
$('#id p').find('br').remove();
The best way to do it would be...
$('#id p br').remove();