I have a simple click event attached to a number of anchors on my web app.
$('a.heading').live("click", function(e) {
e.preventDefault();
//do my stuff
});
It's not rocket science. However on my iPhone the click doesn't register. It would appear it uses the touch handler for iPhone (iPad, Android etc are all fine).
I've seen a couple of tutorials but cannot seem to get my head around it. Is there not a one liner that I can use that jQuery is so usually good at?