↧
Answer by syntagma for Javascript detecting wether or not user has a mouse
You can use CSS media queries for that. To detect a mouse, your query would look like that: @media (hover: hover) and (pointer: fine) { // 'hover' means a device that supports hovering // 'pointer:...
View ArticleJavascript detecting wether or not user has a mouse
This is not for design, I'm making a tutorial where I would either ask the user to tap or to click on things. Right now I'm using: ("ontouchstart" in document.documentElement); But this fails on...
View Article