Similar to this question, I'm trying to prevent the scrollwheel form incrementing a numeric input.
In Chrome/webkit, the following works but in Firefox the wheel still changes the input.
$('input[type=number]').on('mousewheel',
function(e){ $(this).blur(); }
);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="number">