Skip to content

Instantly share code, notes, and snippets.

@zhuharev
Last active April 17, 2016 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhuharev/968349a139122137cfb4f1488518ed56 to your computer and use it in GitHub Desktop.
Save zhuharev/968349a139122137cfb4f1488518ed56 to your computer and use it in GitHub Desktop.
JavaScript test suport functional
function xhrSupport(document) {
"querySelector"in document&&"querySelectorAll"in document
}
function xhrSupport() {
var xhr = new XMLHttpRequest();
return !!('onprogress' in xhr);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment