Skip to content

Instantly share code, notes, and snippets.

@gneutzling
Created July 15, 2014 20:52
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 gneutzling/bbc3dccf1f1cf76eba05 to your computer and use it in GitHub Desktop.
Save gneutzling/bbc3dccf1f1cf76eba05 to your computer and use it in GitHub Desktop.
Verify if the Browser is active
// Verify if the Browser is active
getBrowseActive = function (browserName) {
if (navigator.userAgent.indexOf(browserName) > -1)
return true;
return false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment