vote up 1 vote down star

Possible Duplicate:
Can I make an XMLHttpRequest to another domain?

I'm on exampleA.com domain.

But I want to perform a JSON request, via HTML/JavaScript, that lives on exampleB.com (getXmlHttpRequestObject).

Can I do that since the JSON is on another domain?

flag
1  
stackoverflow.com/questions/324697/… – Chris S Nov 4 at 14:11
Are you in control of the resource you're requesting on exampleB.com? – Rory Fitzpatrick Nov 4 at 14:11

closed as exact duplicate by Bill the Lizard Nov 4 at 14:40

5 Answers

vote up 0 vote down

The XHR object doesn't support other domains, but there's a hacky solution where you inject a script tag into the page (coined JSONP):

var script = document.createElement("script");        
script.setAttribute("src",url);
script.setAttribute("type","text/javascript");                
document.body.appendChild(script);

That script returns JSON with a callback function prepended to it. I'm surprised most browsers haven't plugged it as a security hack but as Rick says, Adsense relies on it.

link|flag
vote up 0 vote down

You cannot do that but you can create a simple serverside proxy page that you would direct your requests to, which in turns does a Web request to the JSON code (at the other domain) forwarding all parameters (ie. query strings). Then just print out whatever response you get from it.

link|flag
vote up 0 vote down

Yes and no.

You can't use an XMLHttpRequest thanks to the same origin policy.

If the data is provided in JSON-P format, then you can still access it (by using dynamically generated script elements).

link|flag
vote up 1 vote down

Cross-site requests are planned for XMLHttpRequest Level 2. The format of the request cotnent (JSON) doesn't matter.

Maybe AJAX Cross Domain can help you.

link|flag
vote up 0 vote down

Generally speaking you can't query across domains using javascript - most "modern" browsers defeat this for security purposes.

I've read an article about using a JSON call back to overcome this, er, limitation, but I haven't tried it yet, so I can vouch for its usefulness.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.