I use a plugin to parse rss feeds to my site the HTML mark up is below.
<body>
script src="lib/jquery-1.6.4.min.js"></script>
<script src="src/jquery.rss.js"></script>
<script>
jQuery(function($) {
$("#rss-feeds").rss("http://feeds.feedburner.com/premiumpixels")
})
</script>
</head>
<body>
<div id="rss-feeds"></div>
My question is, how can I place the rss url on a another site or server and parse it to my site via JSON?
basically I need to know how to Parse rss urls on my site with the url feeds coming from an external site or server via JSON.