Docs
Everything You Need to Know
Gestures
Use
Gestures are used just like any other events.
$('button').on('tap', function() {
// Do stuff
});
$('#myList').on('doubletap', 'li', function() {
// Do stuff based on the list tapped
});
$('#myList').on('swiperight', 'li', function() {
console.log('You just swipped right!');
});