Right ok, I have a parser now and I'm using wordpress. The parser uses shortcodes so I now need to integrate the shortcode into the javascript.
The javascript code is the same as above and needs to have this short code in it:
[parse_feed feed="http://feeds.bbc.co.uk/iplayer/highlights/tv" num="8" ]
I have tried this:
<script type="text/javascript">
$(document).ready(function () {
$('#ticker1').rssfeed(<?php echo do_shortcode('[parse_feed feed="http://feeds.bbc.co.uk/iplayer/highlights/tv" num="8" ]'); ?>,{}, function(e) {
$(e).find('div.rssBody').vTicker();
});
});
</script>
But this isn't working!
Thanks for any help anyone can give. Thanks for the parser suggestion too!!