I\'m trying to implement touch evens with jGestures. swipeone works fine but anything else (swipeleft, swiperight etc) is not firing.
相关标签:
You could try both:
$('#wrap').bind('swipeleftup', function(){ doSomething(); }); $('#wrap').bind('swipeleftdown', function(){ doSomething(); });
And forget about 'swipeleft' as is quite difficult to trigger, as mentioned before.