I’m importing a facebook RSS feed and many of the posts are missing a title. So in that case I want to pull some content from the body and use it as the title. The problem is that the body content can look like this…
Lorem ipsum<br>www.youtube.com<br>dolor sit amet.
I can’t simply remove the br tags because it will become a run on sentence. I would rather replace the tags with a single space or comma with a space. I’ve tried the following code, but it doesn’t seem to be working.
$('.teaser-title br').replaceWith(' ');
Thoughts?
Description
2 Possible problems
teaser-title.Anyway, this works
Sample
Check out this jsFiddle