Having looked at some question on this site and using the mousewheel plugin , I have
$('#spinbox').bind('click change keyup mousewheel', function() {
var box = this;
setTimeout(function() {console.log($(box).val());}, 10);
});
So you need to track it for
- Click: by clicking on the controls
- change: fallback
- keyup: to enter a value
- mousewheel: hmmm... ?