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.
EDIT:
Ah, I was accessing the element by ID, and it was a CLASS, uh! :) So $('#id p').find('br').remove(); works fine!