Ajax cross domain call
- by jAndy
Hi Folks,
I know about ajax cross-domain policy.
So I can't just call "http://www.google.com" over a ajax HTTP request and display
the results somewhere on my site.
I tried it with dataType "jsonp", that actually would work, but I get a syntax error (obviously because the received data is not json formated)
Is there any other possiblity to receive/display data from a foreign domain ?
iFrames follow the same policy?
Kind Regards
--Andy