How do I create a event handler for ui.spinner events?
Hi,
I can't seem to get the event handler to execute when I spin the
spinner. I've tried both methods below without any success:
$("#s1").live('spin', function() {
alert("wow");
});
$("#s1").bind('spin', function() {
alert("wow");
});
....
<input id="s1" name="s1"/>
---
Thanks!