Question : Mouse key up - Jquery

I have a slider and there is a handler for the slider, the handle is - #handle

So users can move this slider, when they drop the mouse button after sliding it(sliding it using the handler), I want to do something.

In other words, they click on the handle and then drag it, as soon as they drop the mouse button I want to do something.,

Answer : Mouse key up - Jquery

There is a stop event that you could use, have you tried that?
1:
2:
3:
$( ".selector" ).slider({
   stop: function(event, ui) { ... }
});
Random Solutions  
 
programming4us programming4us