Hi jscheuer1
below is example of one single slider
Code:
<script type="text/javascript">
$(document).ready(function() {
var owl = $("#slides");
owl.owlCarousel({
navigation : false,
autoPlay: 4000,
slideSpeed : 200,
paginationSpeed : 200,
transitionStyle : "goDown",
singleItem:true
});
$("#slider_holder .icon-left-open").click(function(){
$("#slides").trigger('owl.prev');
});
$("#slider_holder .icon-right-open").click(function(){
$("#slides").trigger('owl.next');
});
});
</script>
i have this kind of 5 sliders at different places in the body.
now you say i should combine them and insert them at the bottom of page.
my question is if i have to show 5 sliders at different places of body then how will i show or call them from the bottom of page ??
thanks
vineet
Bookmarks