Created
December 14, 2012 15:15
Revisions
-
enwin created this gist
Dec 14, 2012 .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,9 @@ $('a').bind('touchstart touchend touchcancel click',function(e){ // prevent click on touch actions e.preventDefault(); // stop script if touchstart, only execute the script on touchend (nicer) e.type === touchstart && return alert('here'); });