Answers for "determine if touch screen js"

3

javascript detect touch screen

function isTouchScreendevice() {
    return 'ontouchstart' in window || navigator.maxTouchPoints;      
};

if(isTouchScreendevice()){
    alert("I am a touch screen device")
}
Posted by: Guest on August-05-2019
0

determine if touch screen js

const isTouchScreen = 'ontouchstart' in window;
Posted by: Guest on September-19-2021

Code answers related to "determine if touch screen js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language