mouseDown
fires on pressing the left mouse button over the slider thumb
mousedown: (event: Event) => void;
Parameters:
event: Event
- the native event object
Example
slider.events.on("mouseDown", function(e){
// your code here
});
Related sample: Slider. Events