Is there an event handler in jQuery that watches for scrolling left and right?
I wanted to do something like
$('document').ScrolledLeft(function() {
console.log('user scrolled left!');
})
$('document').ScrolledRight(function() {
console.log('user scrolled right!');
})
Any suggestions?