Hello everyone,
I'm using sliders for my user interface ( <input type="range"... ).
I delegated the change event on all my page's sliders like this:
- $("myPage").delegate("[type='number']","change",function(){
- //do something
- });
The problem is that doing so, the event is dispatched multiple times when the user is changing the value.
I need to dispatch the event once the user has finished using the slider.
I tried those events without success: "vmouseup, mouseup".
Thanks a lot for your help.