Touch-events single-finger swipe-sensing jquery plugin.
Initial version is here.
This plugin is experimental. Use at your own risk.
$(body).touchy({
'left': function() {
console.log('Swiped to left');
},
'right': function() {
console.log('Swiped to right');
},
'up': function() {
console.log('Swiped to up');
},
'down': function() {
console.log('Swiped to down');
}
});