-1

My bxSlider is not working. I am not sure what I've done wrong. I've included all the required files and linked them correctly but it's still not doing anything. Here's there link http://www.blueappleeye.com/staging/ Please help

user0910
  • 13
  • 7

2 Answers2

0

You can see the following in your browser console:

Uncaught ReferenceError: jQuery is not defined

This leads you to the fact that you're loading your plugin before jQuery.

isherwood
  • 58,414
  • 16
  • 114
  • 157
0

I see the css file in your header...

<link href="css/jquery.bxslider.css" rel="stylesheet" />

... but your jquery and bxslider js files are all the way at the bottom of your page. Load these within the <head> tags of your page.

<!-- jQuery library (served from Google) -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<!-- bxSlider Javascript file // loaded locally onto your server -->
<script src="/js/jquery.bxslider.min.js"></script>
Jabbamonkey
  • 272
  • 4
  • 23