-
Notifications
You must be signed in to change notification settings - Fork 5
Events
Edgar Gonzalez edited this page Feb 5, 2012
·
3 revisions
This is the list of callbacks and events you can register to in the jQuery Rambling Slider.
The event callbacks are set as options during or after initialization.
You can register to the events during initialization with:
$('#slider').ramblingSlider({event: function() {
//...
});
Or after initialization with:
$('#slider').ramblingSlider('option', 'event', function() {
//...
});
Event | Description |
---|---|
afterLoad | Called after initializing. |
beforeChange | Called before changing to the next slide. |
afterChange | Called after changing to the next slide. |
slideshowEnd | Called after the slideshow ends. |
lastSlide | Called when the current slide is the last one. |