How do you get around this Ajax cross site scripting problem on FireFox 3?
|
feedback
|
|
If you're using jQuery it has a callback function to overcome this: http://docs.jquery.com/Ajax/jQuery.ajax#options
Alternatively you could make your ajax request to a server-side script which does the cross-domain call for you, then passes the data back to your script | |||||||
feedback
|
|
To update the answer (I guess, mostly for my benefit when I come looking for this answer later on), if are loading XML or something else, you can always ask the user if he will allow us to read from another site with this code:
(from the RESTful web services book) But, this only works in firefox, when the html file is loaded from local file. So, not that useful. | |||
|
feedback
|
|
Some more details would be nice: which AJAX library are you using, what would you like to achive, how you do it. For example it can be a cross-domain Ajax request, which is not allowed. In this case use JSON. | |||||||
feedback
|
|
I came across this problem recently and it was while I as AJAX loading the local request, not cross site scripting problem. Also, Jimmy himself seems to have the same problem. This seems to be the FF security problem, this article describes the cause and the solution to access to restricted uri denied" code: "1012 problem.
I hope you'll find it useful. | |||
|
feedback
|
|
One more solution: if all you need is the headers, you can specify "HEAD" as the method and it won't trigger the security issue. For instance, if you just want to know if the web page exists.
| |||
|
feedback
|