Jquery plugin Flexslider isn't working

62 Views Asked by At

I'm trying to use the Jquery plugin Flexslider on a website that I'm developing. I have my stylesheets and scripts in order like so:

<head>
  <link rel="stylesheet" href="flexslider.css" type="text/css">   
  <script src="jquery.js"></script>
  <script src="jquery.flexslider.js"></script>'
  <script type="text/javascript" charset="utf-8">
    $(window).load(function() {
    $('.flexslider').flexslider();
    });
  </script>
</head>

I checked to make sure that Jquery is working by writing just a simple script by putting a red box around all of my divs, and that worked.

I'm not sure what I'm doing wrong...I'm using the code (the HTML as well, but for some reason the ctrl+K isn't working for the code) exactly how the website tells me to use it

Any thoughts?

0

There are 0 best solutions below