Reputation: 31
<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
Reputation: 3157
Delete the comma after slideshowSpeed: 7000,
and you are good to go ;)
Upvotes: 3