Ashwin Vasudevan
Ashwin Vasudevan

Reputation: 27

Why is Flexslider not initialised?

http://ashwin931996.webege.com/

The Flexslider is not initialised. Any reason why?

The css and js are linked correctly.

Upvotes: 0

Views: 2631

Answers (1)

Reflective
Reflective

Reputation: 3917

jQuery should be loaded first, so do it on document.ready

   $(function(){
      SyntaxHighlighter.all();
      $('.flexslider').flexslider({
        animation: "slide",
        start: function(slider){
          $('body').removeClass('loading');
        }
      });
    });

Upvotes: 1

Related Questions