Skip to content

Instantly share code, notes, and snippets.

@hubertusanton
Created February 12, 2014 14:31
Show Gist options
  • Save hubertusanton/8956549 to your computer and use it in GitHub Desktop.
Save hubertusanton/8956549 to your computer and use it in GitHub Desktop.
function is_mobile() {
var agents = ['android', 'webos', 'iphone', 'ipad', 'blackberry','Android', 'webos', ,'iPod', 'iPhone', 'iPad', 'Blackberry', 'BlackBerry'];
var ismobile=false;
for(i in agents) {
if (navigator.userAgent.split(agents[i]).length>1) {
ismobile = true;
}
}
return ismobile;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment