views:

554

answers:

1

Is there anyway i can fool the Jquery .load Same origin policy? The closest i've come is with this tut.

But that only deals with rss feeds.

+2  A: 

The same origin policy is a browser thing, not a jQuery thing.

JSON-P is the usual way to work around this and is not limited to RSS feeds. It is even documented in the jQuery documentation (see the example that uses Flickr)

David Dorward
Cool, it seems to fit the bill, i'll attempt to grab html from an external page and get back to you!
Bub