Skip to content

Instantly share code, notes, and snippets.

@ajmalafif
Created July 27, 2016 01:37
Show Gist options
  • Save ajmalafif/a11b68d9a9fa0393db7559e1644aa657 to your computer and use it in GitHub Desktop.
Save ajmalafif/a11b68d9a9fa0393db7559e1644aa657 to your computer and use it in GitHub Desktop.
UA data attribute
var b = document.documentElement;
b.setAttribute('data-useragent', navigator.userAgent);
b.setAttribute('data-platform', navigator.platform );
b.className += ((!!('ontouchstart' in window) || !!('onmsgesturechange' in window))?' touch':'');
// Source: http://rog.ie/blog/html5-boilerplate-addon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment