Last active
May 23, 2021 12:49
-
-
Save hullen/7326597 to your computer and use it in GitHub Desktop.
Detects mobile devices: phones, tablets.
mobileCheck is a lightweight Javascript utils for detecting mobile devices and tablets.
Its using User Agent string. Usage:
if ( mobileCheck.smarphone ) { // Code
}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mobileCheck = { | |
ios: (function(){ | |
return navigator.userAgent.match(/iPhone|iPad|iPod/i); | |
}()), | |
android: (function(){ | |
return navigator.userAgent.match(/Android/i); | |
}()), | |
blackBerry: (function(){ | |
return navigator.userAgent.match(/BB10|Tablet|Mobile/i); | |
}()), | |
windows: (function(){ | |
return navigator.userAgent.match(/IEMobile/i); | |
}()), | |
smartphone: (function(){ | |
return (window.innerWidth <= 384 && window.innerHeight <= 640); | |
}()), | |
tablet: (function(){ | |
return (navigator.userAgent.match(/Tablet|iPad|iPod/i) && window.innerWidth <= 1280 && window.innerHeight <= 800); | |
}()), | |
all: (function(){ | |
return navigator.userAgent.match(/Android|BlackBerry|Tablet|Mobile|iPhone|iPad|iPod|Opera Mini|IEMobile/i); | |
}()) | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/matthewhudson/current-device