Is there a "safe" way to check if the same origin policy applies to an URL before actually trying to use ajax methods? Here is what I have:

function testSameOrigin(url) {

    var loc = window.location,
        a = document.createElement('a');

    a.href = url;

    return a.hostname == loc.hostname &&
           a.port == loc.port &&
           a.protocol == loc.protocol;
}

This sort of works, but it’s kind of a manual guess based on the wikipedia article. Is there a better way of pre-checking cross domain allowance? jQuery is OK to use.

link|improve this question

If you do a cross domain request it will fail with readystate=4 and statuscode=0, which is similar to an aborted request. Since you need to guard against aborted requests anyway why would you need this check? I feel like this security measure is enforced from outside, you have no control over it, so any check from within the environment is by definition wrong. So I don't think you should ever check for it, just let the request fail. – Frits van Campen Mar 3 at 20:38
feedback

5 Answers

up vote 5 down vote accepted

Interesting question! I searched around and couldn't find anything other than what you posted, but I did come across this when I was messing around with some test code. If you just want a simple way to test a URL without making a request, I'd do it the way you're doing it. If you don't care about making a request to test, you could try this:

Make a simple ajax request to whatever URL you want:

var ajaxRequest = $.ajax({
  url: 'http://www.google.com',
  async: false
});

which returns a jqXHR object, which you can then check:

ajaxRequest.isRejected(); // or...
ajaxRequest.isResolved();

Now, the only problem with this is that isRejected() will evaluate to true for every single case where the page doesn't load (i.e. 404 Not Found, etc.), but you can check the status code with:

ajaxRequest.status;

It looks like the above line will return 0 when you attempt to break the same origin policy, but it will return the appropriate error code (again, i.e. 404) in other cases.

So to wrap up, maybe you could try doing something like:

function testSameOrigin(testUrl) {

  var ajaxRequest = $.ajax({
    url: testUrl,
    async: false
  });

  return ajaxRequest.isRejected() && ajaxRequest.status === 0;
}

Not a definitive answer by any means, but I hope it helps you figure out what you're looking for!

link|improve this answer
Yes, that’s an interesting approach. In my original case, I wanted to get rid of the nasty console errors you get when doing the rejected ajax call by trying to "validate" the URL. I also just recently discovered that doing an ajax requests on a local file (the file: protocol) also fails every time. So that is another case to check for... – David Feb 29 at 23:37
You can use ajax for local files by setting the isLocal flag to true api.jquery.com/jQuery.ajax/#jQuery-ajax-settings – Steve Mar 1 at 3:11
feedback

Domain and subdomains are NOT the same, and the cross domain policy will block domain-subdomain communication

BUT

here's a trick using iframes. iframes can communicate between domains and subdomains (since they are under the same parent domain)

AND

a related issue where the asker wants to check if the domain in the iframe is one of his own or not

link|improve this answer
feedback

Is there a "safe" way to check if the same origin policy applies to an URL before actually trying to use ajax methods? Here is what I have:

function testSameOrigin(url) {

    var loc = window.location,
        a = document.createElement('a');

    a.href = url;

    return a.hostname == loc.hostname &&
           a.port == loc.port &&
           a.protocol == loc.protocol;
}

This is a safe and reliable way of doing it, provided you are doing (or rather not doing) certain things.

This sort of works, but it’s kind of a manual guess based on the wikipedia article.

This should fully work under the "normal" circumstances. It will need to be modified if you are planning to use cross-domain scripting.

If you modify document.domain in your scripts, for example from "foo.example.com" and "bar.example.com" to "example.com" your testSameOrigin function would return false for "http://example.com", where in fact it should return true.

If you are planning on modifying document.domain, you can add simply add a check for that in your script.

If you are planning on using CORS (see the link above) to allow cross-domain communication, it will also return a false negative. But if you are using CORS, you will have a list of domains that you can communicate with, and you can add that list to this function as well.

Is there a better way of pre-checking cross domain allowance? jQuery is OK to use.

Probably not, although it may be worth mentioning that what you are seeing in the console from Steve's answer might be the "observer's dilemma" ... Those errors look like they are resulting from the console trying to inspect the other window, not necessarily from the script.

Assuming you're not messing with document.domain or using CORS, your original solution is probably better, as it doesn't need to make an extra request to determine whether the server is available or not. Even if you are doing some cross-domain scripting, modifying the function you have now to accommodate it is probably your best bet.

link|improve this answer
feedback

As far as I know cross domain ajax is disabled in all browsers due to this

http://en.wikipedia.org/wiki/Cross-site_scripting

You cannot do cross domain ajax.

Example: http://jsfiddle.net/bharathwaaj/qZSd8/1/

link|improve this answer
That is why the crossdomain policy was created. A cross-domain policy file (crossdomain.xml) is an XML document that grants a web client permission to handle data across multiple domains. See: adobe.com/devnet/articles/crossdomain_policy_file_spec.html – Highway of Life Feb 22 at 23:48
I edited my question, I want’t clear. I’m not asking if it’s OK with cross-domain, I’m asking how to check if an URL is OK before trying. I don’t know the URL so I need to test it on window.location (or something else). – David Feb 22 at 23:55
@HighwayofLife The crossdomain.xml link which is specified is only for Adobe Flash. Flash is a plugin and is not part of browser. You cannot do cross site scripting using Javascript. You can write a flash application to do that and that crossdomain xml will be applicable only for the plugin. David: No. You cannot do cross site scripting with pure javascript. You can do some server side programming to fetch the data from the other url and get the same. – Bharathwaaj Feb 23 at 4:33
You can do cross-origin scripting using JS, the standard mechanism for it is called CORS. – Quentin Feb 23 at 7:03
feedback

Another way to execute cross domain script is using JSON-P. You can also read this article. Otherwise, the cross domain scripting is not allowed by the same origin policy.

link|improve this answer
I’m not sure why all answers is about how to make or not make cross-browsers ajax requests, that is not at all what I am asking... Do I need to be more clear? – David Feb 29 at 0:17
feedback

Your Answer

 
or
required, but never shown

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