I want to create a for a mobile slider with 4 icons and small circles below them, that will change when every 4 icons changing (should work with spiwe also) Found and exmaple in FlexSlider http://flexslider.woothemes.com/index.html
Build a list of images into my index.html page and added CSS files
<div class="flexslider">
<ul class="slides">
<li>
<img src="slide1.jpg" />
</li>
<li>
<img src="slide2.jpg" />
</li>
<li>
<img src="slide3.jpg" />
</li>
<li>
<img src="slide4.jpg" />
</li>
</ul>
</div>
javaScript function in index.html
$(document).ready(function () {
$('.flexslider').flexslider({
animation: "slide",
animationLoop: false,
itemWidth: 80,
itemMargin: 5
});
});
But it's not working as in the site, its set an white row without any images...Any ideas where my mistake is?