Skip to content

Instantly share code, notes, and snippets.

@yokesharun
Last active May 3, 2020 14:24
Show Gist options
  • Save yokesharun/292bb9974cf446bef3d7 to your computer and use it in GitHub Desktop.
Save yokesharun/292bb9974cf446bef3d7 to your computer and use it in GitHub Desktop.
Javascript | Jquery : Detect Your Device either Mobile or Desktop
var is_mobile = 'No';
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
is_mobile = 'Yes';
}
// print your file output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment