jquery.ui.spinner
jquery.ui.spinner copied to clipboard
Add Events
is there a possibility to add events similar like jquery ui widgtes (slider, autocompleter, ..)
I think a change event is usefull.
Note that if you grab a change event right now like: $("#spinner").change(alert(this.val());
it will loop endlessly... :(
why on earth would you want to do that?
do it like this:
$("#spinner").change( function() { alert( jQuery( this ).val(); });