Skip to content

Instantly share code, notes, and snippets.

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 Volker-E/31514c0a9b607e70a347 to your computer and use it in GitHub Desktop.
Save Volker-E/31514c0a9b607e70a347 to your computer and use it in GitHub Desktop.
Modern JS Browser Sniffing
// Taken from https://justmarkup.com/log/2015/02/26/cut-the-mustard-revisited
if('querySelector' in document
&& 'localStorage' in window
&& 'addEventListener' in window) {
// Modern browser. Let's add JavaScript functionality
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment