Skip to content

Instantly share code, notes, and snippets.

@ziadoz
Created September 10, 2012 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ziadoz/3692258 to your computer and use it in GitHub Desktop.
Save ziadoz/3692258 to your computer and use it in GitHub Desktop.
jQuery Mobile User Agent Detection
$.extend({
isMobile: function() {
return navigator.userAgent.match(/Android|webOS|iPhone|iPod|iPad|BlackBerry/i) !== null;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment