I have an RSS feed that is called using javascript. What I would like to happen is that the information gets displayed as html when you view source instead of the javascript.
Here's the javascript:
<script type="text/javascript" onload="$('div.rssBody').vTicker();">
$(document).ready(function () {
$('#ticker1').rssfeed('http://feeds.bbc.co.uk/iplayer/highlights/tv',{}, function(e) {
$(e).find('.homepageupdates').vTicker();
});
});
</script>
<div id="ticker1"></div>
I'm guessing there is some php function that will be able to extract the info from this the source before the javascript gets to it.
Any help greatly recieved. Thank you