pagePiling.js
pagePiling.js copied to clipboard
Disable keyboard-scrolling while typing in a textarea / input
I'm unable to use the navigational arrows while typing in a form. When i press UP, DOWN, LEFT, RIGHT, HOME, etc. the pages start scrolling.
Would be great if that functionality stops while a input or a textarea is focussed.
I'll mark it as an enhancement. If you really need it as soon as possible contact me for an urgent request.
$('input').click(function() { if ($(this).is(':focus')) { $.fn.pagepiling.setKeyboardScrolling(false); } })
This is the best solution. Hope it helps!