Skip to content

Instantly share code, notes, and snippets.

@anefzaoui
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save anefzaoui/7abaa1b326698b7dc5cd to your computer and use it in GitHub Desktop.

Select an option

Save anefzaoui/7abaa1b326698b7dc5cd to your computer and use it in GitHub Desktop.
Être lazy dans un examen.
function getXhr(){
var xhr;
try{
xhr = new XMLHttpRequest();
} catch (e){
alert("Vous utilisez le pire navigateur, Internet Explorer, veuillez switcher vers un autre.");
return false;
}
return xhr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment