Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Hover event, but not on touch/mobile devices Reply To: Hover event, but not on touch/mobile devices

#299535
j7f4f2a4fds2
Participant

from @PaulOB over at sitepoint

if (!(“ontouchstart” in document.documentElement)) {
$(“#test-parent”).hover(function() {
$(“#test-child”).fadeToggle();
});
}