Tuesday, 13 September 2011

How to Swipe gesture on JQuery Mobile}

 

Here is the code for how to do swipe gesture in JQuery Mobile, here it checks the body tag, and sets a “live” event to detect the swipe gesture, and shows an alert.

  $("body").live('swipe', function() {
         alert("swiped");

}

No comments: