HTML5 Cross-domain XmlHttpRequest vs. Older XmlHttpRequests

MEGA

New Member
I've sensed a lot of ramble about easy cross-domain XmlHttpRequest methods with new HTML5 JS XHR techniques. Given the standard JavaScript XHR code below...\[code\] var xhr=new XMLHttpRequest(); xhr.open("GET",url,false); xhr.send(); var output=xhr.responseXML;\[/code\]...what would be the equivalent HTML5 XHR cross-domain-enabled code that would give the same output?
 
Back
Top