Skip to content

Instantly share code, notes, and snippets.

@lucasmazza
Created March 3, 2011 22:24
Show Gist options
  • Save lucasmazza/853747 to your computer and use it in GitHub Desktop.
Save lucasmazza/853747 to your computer and use it in GitHub Desktop.
simple browser detection.
var browsers = ['msie', 'webkit', 'opera', 'mozilla'];
for(var index in browsers) {
var browser = browsers[index];
if($.browser[browser]) $('html').addClass(browser);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment