Catch horizontal scrolling and fire custom event - twoFingersSwipe
. Check out the demonstration.
jQuery('.selector').bind('twoFingersSwipe', function (event, direction) {
switch (direction) {
case 'left':
// Do something.
break;
case 'right':
// Do something.
break;
}
})