Is it possible to load the contents of an external site using jQuery Ajax, and not iFrame?
This is what I'm trying to achieve, but it looks like there might be cross domain issues with this?
$('#result').load('http://www.google.com');
In Flash, you can put the cross-domain policy policy file at the root of the site so that certain sites can access the contents of swf files or other files. Is this something that can be done using AJAX?
Thanks James
source
share