Skip to content

Instantly share code, notes, and snippets.

View NormanBenbrahim's full-sized avatar
🦍

Norman Benbrahim NormanBenbrahim

🦍
View GitHub Profile
@iwek
iwek / xhr.js
Last active January 24, 2017 12:32
Raw JavaScript Ajax Request
//simple XHR request in pure JavaScript
function load(url, callback) {
var xhr;
if(typeof XMLHttpRequest !== 'undefined') xhr = new XMLHttpRequest();
else {
var versions = ["MSXML2.XmlHttp.5.0",
"MSXML2.XmlHttp.4.0",
"MSXML2.XmlHttp.3.0",
"MSXML2.XmlHttp.2.0",