I usually use
.bind("click touchstart", function(){
});
instead of:
.click(function(){
});
That way you are binding the the correct event. It’s also quicker, the touch responds much faster than click for some reason.
I usually use
.bind("click touchstart", function(){
});
instead of:
.click(function(){
});
That way you are binding the the correct event. It’s also quicker, the touch responds much faster than click for some reason.