How to Fix Flexslider Jquery Conflict
Flexslider is actually good option for adding simple slider to your html or wordpress website. But unfortunately sometimes Flexslider will make some Jquery Conflict. So here is the simple solution for Flexslider Jquery Conflict. Remove the old flexslider code replace with below code.
<script type="text/javascript"> (function($) { $(window).load(function(){ $('.flexslider').flexslider({ animation: "slide", start: function(slider){ $('body').removeClass('loading'); } }); }); })(jQuery); </script>