up vote 2 down vote favorite
1
share [g+] share [fb]

I'm trying to call to external PHP script using Ajax like this:

$(function() {
    $.ajax({'url': 'http://stokes.chop.edu/web/zscore/result.php',
            'type': 'POST',
            'success': function(response, textStatus, XMLHttpRequest) {
                alert('[' + response + ']');
            },
            'error': function(XMLHttpRequest, textStatus, errorThrown) {
                alert('Error');
            }
    });
});

The result is: [] (i.e. success function is called!), but I see the following error in HTTPFOX plugin for FireFox:

Error loading content (NS_ERROR_DOCUMENT_NOT_CACHED)

What's wrong with my code ?

link|improve this question

It looks like a HTTPFox bug: code.google.com/p/httpfox/issues/detail?id=20 – shamittomar Sep 4 '10 at 3:55
Lol, this would be such a gaping security hole if browsers allowed cross domain requests like that – Pierreten Sep 4 '10 at 7:25
feedback

1 Answer

up vote 4 down vote accepted

You cannot load contents from pages that does not have the same domain name as the one from which the ajax request is called from. This is a well known security feature call the Same Origin Policy.

link|improve this answer
1  
There are special mechanisms, such as JSONP, but they require server support. – Matthew Flaschen Sep 4 '10 at 4:06
feedback

Your Answer

 
or
required, but never shown

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