Disable scrolling on number field
-
Hello my favorite @codepeople,
I need to disable the scrolling on number field (I don’t want the numbers to go up or down when scrolling the mouse wheel when the focus is on the number field). I have the following code, but it doesn’t seem to do the trick:
fbuilderjQuery(document).on(‘focus’, ‘input[type=”number”]’, function (e) {
$(this).on(‘mousewheel.disableScroll’, function (e) {
e.preventDefault();
});
});fbuilderjQuery(document).on(‘blur’, ‘input[type=”number”]’, function (e) {
$(this).off(‘mousewheel.disableScroll’);
});Thanks much!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Disable scrolling on number field’ is closed to new replies.