I'm trying to attach a scroll event to a text input so that when you scroll-up, while the textbox is focused, it increments the numbers in it and when you scroll-down it decrements the number in it. If it's empty or NaN it should just replace it with a 0 and continue on.
I've managed to pull this off for touchmove
and click-and-drag
, but for some reason the scroll event isn't attaching to the text box.
$('input').scroll(function(event) {
$('div').append('scrolled1');
});
$('input').add('.scrollable').on('scroll', function(event) {
$('div').append('scrolled2');
});
No events are being fired.