I\'m trying to implement touch evens with jGestures. swipeone works fine but anything else (swipeleft, swiperight etc) is not firing.
try this:
$('#wrap').bind('swipeone', function (event, obj) { var direction=obj.description.split(":")[2] if(direction=="left"){ doSomething(); } });