Hi
I used swiperight and swipeleft from
https://jquerymobile.com/ and I had no problems
My js :
- $(document).ready(function(){
$(".MySelector").on("swiperight",function(){
//actions for swipe right
});
$(".MySelector").on("swipeleft",function(){
//actions for swipe left
});
});
And in the body :
- <div class=""MySelector">My Swipable area<div>
Perhaps you should try
- $(document).ready(function(){
$(".swipe").on("swipe",function(){
//some actions
});
});