Somehow I\'m unable to use slick carousel (http://kenwheeler.github.io/slick/) correctly.
I\'m getting the following error:
Uncaught TypeError: $(..
Try:
function initSlider(){
$('.references').slick({
dots: false,
infinite: true,
speed: 300,
slidesToShow: 1,
autoplay: true,
prevArrow: '',
nextArrow: ''
});
}
$(document).on('ready', function () {
initSlider();
});
Also just to be sure, make sure that you include the JS file for the slider after you include jQuery and before you include the code above to initialise.