Reputation: 27
http://ashwin931996.webege.com/
The Flexslider is not initialised. Any reason why?
The css and js are linked correctly.
Upvotes: 0
Views: 2631
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