Jquery Mobile Swipe issue - Is there any fix -


swiping not working when use jquery mobile on android devices. swiping not smooth or not work @ all.

$(document).off('swipeleft swiperight','.test')     .on('swipeleft swiperight','.test', function(event) {                swipe(event); }); 

.test - refers div class.

please help. and, problem in jqm, not working on samsung galaxy s4 native browser. there easy way achieve without using new plugins?

test this:

set to default

$(document).on('mobileinit', function () {    // settings    $.mobile.ignorecontentenabled = true;    $.mobile.defaultpagetransition = "slide"; }); 

and try this:

$('div').on('swipeleft', function(e) {    e.stopimmediatepropagation(); }); 

Comments