Skip to content

Instantly share code, notes, and snippets.

@ackernaut
Created March 20, 2012 20:11
Show Gist options
  • Save ackernaut/2140799 to your computer and use it in GitHub Desktop.
Save ackernaut/2140799 to your computer and use it in GitHub Desktop.
JS: UA and Platform on HTML tag
var htmlAttr = document.documentElement;
htmlAttr.setAttribute('data-useragent', navigator.userAgent);
htmlAttr.setAttribute('data-platform', navigator.platform);
// See https://gist.github.com/2140827 for CSS
// Thanks, Rogie! http://rog.ie/post/9089341529/html5boilerplatejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment