Is it possible to disable the scroll wheel changing the number in an input number field? I\'ve messed with webkit-specific CSS to remove the spinner but I\'d like to get rid
$(document).on("wheel", "input[type=number]", function (e) { $(this).blur(); });