Skip to content

Instantly share code, notes, and snippets.

@atelierbram
Forked from c-kick/hnl.taphover.js
Last active August 29, 2015 14:10
Show Gist options
  • Save atelierbram/2e0487933608d79884c2 to your computer and use it in GitHub Desktop.
Save atelierbram/2e0487933608d79884c2 to your computer and use it in GitHub Desktop.
//taphover - a solution to the lack of hover on touch devices.
//more info: http://www.hnldesign.nl/work/code/mouseover-hover-on-touch-devices-using-jquery/
$('a.taphover').on('touchstart', function (e) {
'use strict'; //satisfy the code inspectors
var link = $(this); //preselect the link
if (link.hasClass('hover')) {
return true;
} else {
link.addClass('hover');
$('a.taphover').not(this).removeClass('hover');
e.preventDefault();
return false; //extra, and to make sure the function has consistent return points
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment