onfinish


Version: Pro

onfinish

Event properties:

index the index of the current slide

Triggers when the slider finish the slide transition.

Example:

<script type="text/javascript">
    var myEvoSlider = $("#mySlider").evoSlider();
    
    // Bind function to the onfinish event
    myEvoSlider.bind("onfinish", function( e ){
        alert("Slide: " + e.index);
    });
</script>