Since there doesn't appear to be any api documentation with this script nor any obvious access to a given slider instance, we can use its own nav buttons and a little style and jQuery to perform this. First in the on page call, set showcontrols to true and add code to activate the next control when a slide is clicked:
Code:
<script class="secret-source">
jQuery(document).ready(function($) {
$('#banner-fade').bjqs({
height : 770,
width : 930,
showcontrols : true,
automatic : false,
numImagesToPreload: 6,
loop: true,
loopRewind: true,
});
$('.bjqs-slide').click(function(){$('.bjqs-next a').click();});
});
</script>
So that these controls will not be seen, in the stylesheet, set the controls to display none (line 5 bjqs.css):
Code:
ul.bjqs-controls{list-style:none;margin:0;padding:0;z-index:9999;display:none;}
Bookmarks