Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
here is jquery slideshow click.

<script type="text/javascript">
$(document).ready(function () {
$('.bxslider').bxSlider();
});

$(".bxslider > div:gt(0)").hide();

setInterval(function () {
$('.bxslider > div:first')
.fadeOut(1000)
.next()
.fadeIn(1000)
.end()
.appendTo('.bxslider');
}, 3000);

</script>

i wanna add autoplay..
please help their friends...
kateer shukran.
Posted

1 solution

Check the below link

http://bxslider.com/examples/auto-show-start-stop-controls[^]

Hope it helps you achieve your task
 
Share this answer
 
Comments
RadumixMatsad 30-Sep-14 5:40am    
thank you boss ChauhanAjay

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900