I'm trying to fire some code when slick initializes. Apparently in the newest version 1.4 "callback methods have been deprecated and replaced with events."
This doesn't work for me though:
$('.spv-slider').on('init', function(event, slick){
console.log("initialised")
});
what's wrong with it?
I'm not sure at which point you tried to initialize slickslider, but you have to do it after binding the init
event.
So write your piece of code as you did and after that initialize the slider:
$('.spv-slider').on('init', function(event, slick){
console.log("initialized")
});
And then:
$('.spv-slider').slick();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With