you can use the div to scroll, but not the whole page in a web browser. i, you can only load pages in a div after swiping and do not move the entire page.
only works in chrome, safari.
Here is the code if you are using jquery mobile.
$('body').live('swipeleft swiperight',function(event){ if (event.type == "swiperight") { alert("swipped right side"); } if (event.type == "swipeleft") { alert("swipped left side"); } event.preventDefault(); });
see here wire detection
sree
source share