loadStart
Version: Pro
loadStart
type: Function
default: function(){ }
Callback function to run when start loading external data. You can access the api methods from inside the callback using the this keyword.
Example:
var myEvoSlider = $("#mySlider").evoSlider({
loadStart: function(){
alert( "Starts loading external data!" );
}
});