Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

With this code http://paulisageek.com/tmp/options.html :

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>
<script>
$.get("http://metaward.com/import/http://metaward.com/u/ptarjan", function(data) {
     alert(data);
});
</script>

in Firefox 3.5 on Vista it does an OPTIONS request to that url, and then the callback is never called with anything.

When it isn't cross domain, it works fine : http://metaward.com/static/tmp/options.html.

Shouldn't Jquery just make the call with a <script> node and then do the callback when its loaded? I understand that I won't be able to get the result (since it is cross domain), but that's ok, I just want the call to go through. Is this a bug or am I doing something wrong?

EDIT: It seems the OPTIONS is from the Cross-Origin Resource Sharing (CORS) standard. See http://metajack.im/2010/01/19/crossdomain-ajax-for-xmpp-http-binding-made-easy/ about allowing cross domain requests.

share|improve this question
is metaward.com/import/http://metaward.com/u/ptarjan actually the url?? – ScottE Aug 10 '09 at 18:59
yes. its an agregator for awards put on other urls. This one happens to be a recursive call :) – Paul Tarjan Aug 10 '09 at 19:01

6 Answers

up vote 18 down vote accepted

The OPTIONS is from http://www.w3.org/TR/cors/ See http://metajack.im/2010/01/19/crossdomain-ajax-for-xmpp-http-binding-made-easy/ for a bit more info

share|improve this answer
And there is a fix using prototype: stackoverflow.com/a/15300045/408872 – Katapofatico Mar 8 at 17:55

I don't believe jQuery will just naturally do a JSONP request when given a URL like that. It will, however, do a JSONP request when you tell it what argument to use for a callback:

$.get("http://metaward.com/import/http://metaward.com/u/ptarjan?jsoncallback=?", function(data) {
     alert(data);
});

It's entirely up to the receiving script to make use of that argument (which doesn't have to be called "jsoncallback"), so in this case the function will never be called. But, since you stated you just want the script at metaward.com to execute, that would make it.

share|improve this answer
would MY callback still be notified that the script element has fully loaded? I just want to make sure the update happened before I query the API for it. – Paul Tarjan Aug 10 '09 at 21:38
You will if the receiving script supports JSONP, and is willing to call the function you identify. If the script does nothing but generate a block of JSON data with no other behavior, you won't be able to tell when it's done loading. If it's essential to tell when it's done loading, you might consider implementing a script on your own server that acts as a proxy. – VoteyDisciple Aug 11 '09 at 11:25

Preflighted requests

Unlike simple requests (discussed above), "preflighted" requests first send an HTTP OPTIONS request header to the resource on the other domain, in order to determine whether the actual request is safe to send. Cross-site requests are preflighted like this since they may have implications to user data. In particular, a request is preflighted if:

It uses methods other than GET or POST. Also, if POST is used to send request data with a Content-Type other than application/x-www-form-urlencoded, multipart/form-data, or text/plain, e.g. if the POST request sends an XML payload to the server using application/xml or text/xml, then the request is preflighted. It sets custom headers in the request (e.g. the request uses a header such as X-PINGOTHER)

Check out this URL for more information: https://developer.mozilla.org/en-US/docs/HTTP_access_control

share|improve this answer

try with:

$.get("http://metaward.com/import/http://metaward.com/u/ptarjan",{},function(data){alert(data);});

share|improve this answer
same thing. also same if the 4th param is "text" – Paul Tarjan Aug 10 '09 at 19:07

It's looking like Firefox and Opera (tested on mac as well) don't like the cross domainness of this (but Safari is fine with it).

You might have to call a local server side code to curl the remote page.

share|improve this answer

In fact, cross-domain AJAX (XMLHttp) requests are not allowed because of security reasons (think about fetching a "restricted" webpage from the client-side and sending it back to the server – this would be a security issue).

The only workaround are callbacks. This is: creating a new script object and pointing the src to the end-side JavaScript, which is a callback with JSON values (myFunction({data}), myFunction is a function which does something with the data (for example, storing it in a variable).

share|improve this answer
right, but I can load it in a <script src=""> or <img src=""> and the browser will happily hit it. I just want to know when it is fully loaded so i can query for the result of the import. – Paul Tarjan Aug 10 '09 at 21:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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