Skip to content

Instantly share code, notes, and snippets.

@fmtarif
Created September 28, 2013 15:23
Show Gist options
  • Save fmtarif/6743098 to your computer and use it in GitHub Desktop.
Save fmtarif/6743098 to your computer and use it in GitHub Desktop.
browser class through JS
//add browser classes to body
var browser = [];
if (/mozilla/.test(navigator.userAgent.toLowerCase()) && !/webkit /.test(navigator.userAgent.toLowerCase()))
browser.push('mozila');
if (/webkit/.test(navigator.userAgent.toLowerCase()))
browser.push('webkit');
if (/opera/.test(navigator.userAgent.toLowerCase()))
browser.push('opera');
if (/safari/.test(navigator.userAgent.toLowerCase()))
browser.push('safari');
console.log(browser.join(' '));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment