vote up 1 vote down star
1

I am binding live events on links in my PhoneGap app. The event does fire successfully (confirmed by alert()ing), but it seems any touch data is not attached to the event object like it should be. This happens on all touch events - touchstart, touchmove, and touchend.

$('a').live('touchend', function(event) {
  event.preventDefault();
  alert(event.touches.length); // event.touches should be populated!
});

Any ideas? Am I SOL with jQuery.live()?

flag

1 Answer

vote up 0 vote down check

The touch events are not currently supported by Events/live.

From the documentation:

Possible event values: click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup

Currently not supported: blur, focus, mouseenter, mouseleave, change, submit

You might want to consider trying to use click if that will suit your needs, or you can switch to using livequery, which probably will support it. (livequery is what live was originally based on, I'm not sure why it doesn't support all of the same events)

link|flag
I'll try out livequery, thanks. Figured as the touch events were getting caught OK that they were fairly supported, but I guess something extra has to happen to pass along all the event attributes. – ceejayoz Mar 23 at 14:21
I believe livequery uses timers and that is why it can support so much more. The jQuery team used a different method that is more efficient, but also limited. – Jab Mar 23 at 20:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.