I am currently using a slider function called Slick by Ken Wheeler. It is currently being loaded in the footer with just two variables.
$('.slickSlider').slick({
dots: true,
fade: true
});
Currently, I am facing an issue with the ready functionality of jQuery where everything breaks until jQuery is fully loaded. Is there a way to hide the slider or resolve this issue so that it either loads first or doesn't load anything until all assets are fully loaded?
Thank you in advance.