after
Version: Pro
after
type: Function
default: function(){ }
Callback function to run after slide transition. If no function is set, no function will run after slide transition. You can access the api methods from inside the callback using the this keyword.
Example:
var myEvoSlider = $("#mySlider").evoSlider({
after: function(){
alert( this.getIndex() );
}
});