Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Created April 19, 2015 06:08
Show Gist options
  • Save RyoSugimoto/bd57a19aaced999e3fc7 to your computer and use it in GitHub Desktop.
Save RyoSugimoto/bd57a19aaced999e3fc7 to your computer and use it in GitHub Desktop.
var _ua = (function(u){
return {
Tablet:(u.indexOf("windows") != -1 && u.indexOf("touch") != -1) || u.indexOf("ipad") != -1 || (u.indexOf("android") != -1 && u.indexOf("mobile") == -1) || (u.indexOf("firefox") != -1 && u.indexOf("tablet") != -1) || u.indexOf("kindle") != -1 || u.indexOf("silk") != -1 || u.indexOf("playbook") != -1,
Mobile:(u.indexOf("windows") != -1 && u.indexOf("phone") != -1) || u.indexOf("iphone") != -1 || u.indexOf("ipod") != -1 || (u.indexOf("android") != -1 && u.indexOf("mobile") != -1) || (u.indexOf("firefox") != -1 && u.indexOf("mobile") != -1) || u.indexOf("blackberry") != -1
}
})(window.navigator.userAgent.toLowerCase());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment