Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
What's the best way to detect a 'touch screen' device using JavaScript?
The best way to detect a ‘touch screen’ device, is to work around to see whether the touch methods are present within the document model or not.
function checkTouchDevice() {
return 'ontouchstart' in document.documentElement;
}
Here, you can also use it to detect mobile or desktop, like the following −
if (checkTouchDevice()) {
// Mobile device
} else {
// Desktop
} Advertisements
