Skip to content

Instantly share code, notes, and snippets.

@ZhouYang1993
Created October 5, 2022 21:21
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 ZhouYang1993/f6de44819fcd88c16ca0890f617dbdaa to your computer and use it in GitHub Desktop.
Save ZhouYang1993/f6de44819fcd88c16ca0890f617dbdaa to your computer and use it in GitHub Desktop.
Detect Devices in JavaScripts
function onClick(){
if(window.screen.width>=600){
// do sth for desktop browsers
}
else{
// do sth for mobile browsers
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment