Still newbie here. I've set up the wonderful script zrssfeed and have but one question. How do I prevent the external link from navigating away from my app? Because, there is no navigation back to the app on the external link is clicked. Here is the snippet I've been working on, but I can't figure how to keep the contents of the rss feed within the DOM of my app (instead of jumping out of the app to the url / page.
Thank you!
// Add feed row
html += '<li class="rssRow '+row+'">' +
'<'+ options.titletag +'><a href="'+ entry.link +'" title="Vie this feed at '+ feeds.title +'">'+ entry.title +'</a></'+ options.titletag +'>'
if (options.date && pubDate) html += '<div>'+ pubDate +'</div>'
if (options.content) {