Skip to content

Instantly share code, notes, and snippets.

@raselahmed7
Last active November 29, 2016 19:03
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save raselahmed7/f0bbd86d98617510198408fb50fef56a to your computer and use it in GitHub Desktop.
Save raselahmed7/f0bbd86d98617510198408fb50fef56a to your computer and use it in GitHub Desktop.
jQuery(document).ready(function($){
var deviceAgent = navigator.userAgent.toLowerCase();
var agentID = deviceAgent.match(/(iphone|ipod|ipad)/);
if (agentID) {
// mobile code here
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment