i have a jquery slider,
link: http://ekallevig.com/jshowoff/
this is my html code:
<div id="features">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
Slider Code:
<script type="text/javascript">
$(document).ready(function(){
$('#features').jshowoff({
speed:3500,
changeSpeed:400,
links: false,
animatePause: true,
controls: true,
effect: 'slideLeft',
controlText:{play:'Play',pause:'Stop',previous:'Prev',next:'Next'},
hoverPause: true
});
});
</script>
everything is work in my slider except numeric links!
if i enable it:
links: true,
i will get undefined code!
it should be 1 2 3
not undefined undefined undefined
look to my picture pls:
http://s7.postimage.org/buf1wehsr/sliders.jpg
How i can fix numeric links?
i hope u guys undrstand me, sorry for my bad english 🙁
1 Answer