Monday, June 3, 2024
96
rated 0 times [  99] [ 3]  / answers: 1 / hits: 16038  / 15 Years ago, thu, october 29, 2009, 12:00:00

I'm working on some Javascript that makes use of Firefox 3.5's ability to perform cross-domain XMLHttpRequests… But I'd like to fail gracefully if they aren't supported.



Apart from actually making a cross-domain request, is there any way to detect a browser's support for them?


More From » xmlhttprequest

 Answers
72

For future reference, full CORS feature detection should look something like this:



//Detect browser support for CORS
if ('withCredentials' in new XMLHttpRequest()) {
/* supports cross-domain requests */
document.write(CORS supported (XHR));
}
else if(typeof XDomainRequest !== undefined){
//Use IE-specific CORS code with XDR
document.write(CORS supported (XDR));
}else{
//Time to retreat with a fallback or polyfill
document.write(No CORS Support!);
}


You can try this test live using JSBin and see the proper response in IE, Firefox, Chrome, Safari, and Opera.



There are some edge cases in non-browser environments that do support cross-domain XHR but not XHR2/CORS. This test does not account for those situations.


[#98425] Sunday, October 25, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
catrinas

Total Points: 587
Total Questions: 100
Total Answers: 105

Location: Rwanda
Member since Thu, Feb 10, 2022
2 Years ago
;