Shortest XmlHttpRequest instanciation ever

if (!XMLHttpRequest) {
  window.XMLHttpRequest = function() {
    return new ActiveXObject('Microsoft.XMLHTTP');
  }
}
by Nicolas Perriault on 2007-06-06, tagged ajax  javascrit  xmlhttprequest 
You need to create an account or log in to post a comment or rate this snippet.