-
-
Save abrarShariar/533839eee31c185283f4 to your computer and use it in GitHub Desktop.
Revisions
-
c-kick created this gist
Nov 17, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ //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 } });