Fliptab
Fliptab

Reputation: 31

Javascript slider jquery

<script type="text/javascript">
  $(window).load(function() {
    $('.flexslider').flexslider({
        controlNav: false,
        animation: "fade",
        startAt: 0,                     
        slideshow: true,                
        slideshowSpeed: 7000,
    });     
});
</script>

Why doesn't my slider work? I copy pasted it from an other script so I am clueless where to start.

Upvotes: 0

Views: 126

Answers (1)

AgeDeO
AgeDeO

Reputation: 3157

Delete the comma after slideshowSpeed: 7000, and you are good to go ;)

Upvotes: 3

Related Questions