Skip to content

Instantly share code, notes, and snippets.

@ashhitch
Created May 21, 2014 10:46
Show Gist options
  • Select an option

  • Save ashhitch/d731842444f1cf871cb2 to your computer and use it in GitHub Desktop.

Select an option

Save ashhitch/d731842444f1cf871cb2 to your computer and use it in GitHub Desktop.
Append Browser Name to HTML Tag
$.each($.browser, function (key, value) {
if (key != 'version') {
$('html').addClass(key);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment