There are a few discussions on the github page regarding the destroy method, and a couple questions on stack, but there hasn't been a straightforward answer or solution yet, that I was able to find after alot of searching.
The current version of flexslider http://www.woothemes.com/flexslider/ does not have a destroy method. In the notes it says that the former version 1.8 does, but using that method does not work.
I need to unbind a flexslider element then call .flexslider() on another element as I don't want several sliders running simultaneously.
How can I do this? Note: removing nav elements, removing classes, unwrapping the UL and removing ".clone" li
's is not good enough! I want to completely return the slider element to its original state!
Right now I clone the slider before initializing flexslider, then use .after()
to insert the clone after the slider, then remove the slider. But this seems like a very heavy handed approach to me.
$projCur.addClass('flexslider').flexslider({
animation: "slide",
animationSpeed: 500,
slideshow: false,
manualControls: '.dot-nav li a'
});
Thanks!