Firstly, please note that I've moved your posts into a new thread. You were replying to someone else's thread, which you shouldn't do if you're asking a question of your own.
Hmm I can't tell immediately why the script is displaying the HTML tags literally for the description portion of the CNN feed. To get the script to just display "read the full story for details" for the descriptions, change the line:
Code:
var description='<div class="rssdescription">'+unescape(rsscontent.description)+'</div>'
inside rsspausescroller.js to:
Code:
var description='<div class="rssdescription">read the full story for details</div>'
I'll have to go back and confirm if the HTML literals problem occurs in the DD demo as well.
Bookmarks