Swiping Detecting Swipe Of Page $(document).live("swipeleft", function () { alert("swipe"); }); Detecting swipe over an element $('div.ui-page').on("swipeleft", function () { alert("swipe"); }); Read More →