function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jie GouJie Gou 

Swipe form JqueryMobile not working on ViusalForce?

I tried swipe on HTML, it is working fine. Then I tried the same thing on VisualForce, then it does not work. 

 

$(document).ready(function(){
$("#mainpage").swipeleft(function(){
$.mobile.changePage("#page1");
});

$("#mainpage").bind("swipeleft",function(){
$.mobile.changePage("#page1");
});
});

 

I tried both. No one works. Could anyone show me a working example?

 

Thanks,