You can attach several handlers to the same event using the method attachEvent():
mySlider.attachEvent("onClick", function(){
// your code here
});
Several handlers can be attached to one and the same event, and all of them will be executed.
The names of the events are case-insensitive.
To detach an event use the method detachEvent():
mySlider.detachEvent(myEvent);
You can find the full list of events in the Slider API.
Back to top