I am using an RSS feed to display news on my site. I am using the link to the actual story to try and get the full content of the article and post it directly on my website so people don’t leave to read the story. I thought I could do this with jQuery’s load function but have since found out this doesn’t work across domains. Can any suggest anything else?
Share
You cannot load content from external domains – read up here: http://en.wikipedia.org/wiki/Same_origin_policy
If I was you I’d make a small page using server side language like PHP that can retrieve what you need from an external domain and use jQuery’s AJAX to call your PHP script.