Skip to content

Instantly share code, notes, and snippets.

@Quellens
Last active August 4, 2020 15:27
Show Gist options
  • Save Quellens/dc6b3f6105d18b2228c7929a36e05c50 to your computer and use it in GitHub Desktop.
Save Quellens/dc6b3f6105d18b2228c7929a36e05c50 to your computer and use it in GitHub Desktop.
This bool is true if the user has clicked the website on tablets, smartphones etc..
var mobiledevice = ((typeof window.orientation !== "undefined") || (navigator.userAgent.indexOf('IEMobile') !== -1));
if(mobiledevice){
//do something different
}
// OR use the maxTouchPoints-method
mobiledevice = navigator.maxTouchPoints > 0;
if(mobiledevice){
//do something different
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment