Search code examples
jqueryjquery-pluginsfirebugjcarousel

jCarousel Lite Installation issues


I'm have slight difficulty installing jCarousel onto my site.

http://www.gmarwaha.com/jquery/jcarousellite/

I've made attempts to install this plugin however when /i render the installation through firebug, I get an error message:

"$ not defined", $(".carousel").jCarouselLite({

http://natesmithen.com/wired/test/test.html

Does anyone know how I can resolve this problem?


Solution

  • HTML File : Load jquery file here

    <script src="jquery.js"></script>
    

    Load carousel file after that

    <script src="jcarousellite.js"></script>  
    

    Then do

       <script>
        $(document).ready(function() {
           $(".carousel").jCarouselLite({
            //add properties here 
           });
        });
        </script>