I'm currently trying to setup a custom thumbnail navigation for FlexSlider and i am using the following code which i believe is correct according to the official flexslider documentation:
$(document).ready(function(e) {
$('.flexslider').flexslider({
animation: "slide",
controlsContainer: ".flex_thumbs",
controlNav: true,
manualControls: ".custom_controls li img",
animationSpeed: 1200,
});
});
The problem is when i run my page i encounter the following error in my console log:
a.controlNav.live is not a function
and of course my custom thumbnails do not work.
Has anyone encountered this particular error before? I tried searching online but could not find any answers to this particular problem.
Any help is appreciated.