Using the jQuery rss pluging jFeed, and using their example code on their website, I have created the following code which does not seem to work:
jQuery.getFeed({
url: 'http://www.hotukdeals.com/rss/hot',
success: function(feed) {
alert(feed.title);
}
});
I get a message saying:
XMLHttpRequest cannot load http://www.hotukdeals.com/rss/hot. Origin http://intranet is not allowed by Access-Control-Allow-Origin.
Anyone know why I am getting this access control message? This rss feed works fine in my desktop and online rss readers...