Skip to content

Instantly share code, notes, and snippets.

@hemraj7171
Created June 30, 2017 10:34
Show Gist options
  • Save hemraj7171/b63612735e083c2501c25d6c77ba4cf1 to your computer and use it in GitHub Desktop.
Save hemraj7171/b63612735e083c2501c25d6c77ba4cf1 to your computer and use it in GitHub Desktop.
Check Safari and Firefox Browser using JavaScript
//Check Safari
if (navigator.userAgent.indexOf('Safari') != -1 && navigator.userAgent.indexOf('Chrome') == -1) {
alert('Its Safari');
}
//Check Firefox
if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1){
// Do Firefox-related activities
alert('Its Fire Chaa...Firefox');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment