Skip to content

Instantly share code, notes, and snippets.

@deniaz
Created March 21, 2014 16:13
Show Gist options
  • Save deniaz/9689752 to your computer and use it in GitHub Desktop.
Save deniaz/9689752 to your computer and use it in GitHub Desktop.
The Guardian's Lightweight Modernizr Replacement
function isModernBrowser() {
return 'querySelector' in document &&
'addEventListener' in window &&
'localStorage' in window &&
'sessionStorage' in window &&
(('XMLHttpRequest' in window &&
'withCredentials' in new XMLHttpRequest()) ||
'XDomainRequest' in window);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment