Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XMLHttpRequest Level 2: Browsers

Is it possible nowadays? Are there any browser supporting XMLHttpRequest Level 2? I test it. Thank you.

like image 988
thom Avatar asked Feb 17 '11 12:02

thom


People also ask

Does Internet Explorer support XMLHttpRequest?

XMLHttpRequest was first introduced by Microsoft in Internet Explorer 5.0 as an ActiveX control. However, in IE7 and other browsers XMLHttpRequest is a native JavaScript object.

What is meant by XMLHttpRequest?

XMLHttpRequest (XHR) is a JavaScript API to create AJAX requests. Its methods provide the ability to send network requests between the browser and a server.


1 Answers

You can find a complete list of browsers that support XMLHttpRequest Level 2 here:

http://caniuse.com/#feat=xhr2

According to the site, about 62% of browsers support it, including:

  • Firefox 4+
  • Chrome 7+
  • Safari 5+

IE8/9 supports the XDomainRequest object, but will support XmlHttpRequest Level 2 as of IE10.

like image 166
monsur Avatar answered Nov 10 '22 15:11

monsur