-
The Velvet Underground & NicoThe Velvet Underground -
White Light / White HeatThe Velvet Underground -
The Velvet UndergroundThe Velvet Underground -
LoadedThe Velvet Underground
jQuery:
$(function(){
var slider = $('#slider1').bxSlider({
controls: false
});
$('#go-prev').click(function(){
slider.goToPreviousSlide();
return false;
});
$('#go-next').click(function(){
slider.goToNextSlide();
return false;
});
}); Note: the slider must be assigned to a variable to use the public functions.