I've got my RSS feed in xml file which I can not edit. The problem is that some of the tags inside are empty or they contain other html tags such as <b></b>. I built my own JavaScript rss feed reader but it's not working unless I will get rid of all empty tags and all html tags. Any ideas?
Example 1 - which doesn't work:
/* ... */
<item>
<pubDate>04 Feb</pubDate>
<closeDate>11 Feb</closeDate>
<snappytitle></snappytitle>
<title><b>Web Developer</b></title>
<grade>4</grade>
</item>
/* ... */
Example 2 - which does work:
/* ... */
<item>
<pubDate>04 Feb</pubDate>
<closeDate>11 Feb</closeDate>
<title>Web Developer</title>
<grade>4</grade>
</item>
/* ... */