Skip to content

Instantly share code, notes, and snippets.

@Riveascore
Created March 28, 2014 17:05
Show Gist options
  • Save Riveascore/9837694 to your computer and use it in GitHub Desktop.
Save Riveascore/9837694 to your computer and use it in GitHub Desktop.
Quick browser detection
if(window.chrome != undefined) {
}
if(window.opera != undefined) {
}
if(window.mozInnerScreenX != undefined) {
}
if(window.safari != undefined) {
}
if(navigator.appName == 'Microsoft Internet Explorer') {
}
else {
// Don't do for now...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment