I am looking for a way to pause my BSXlider carousel when the user scrolls the page. Is this possible? Been looking at using the slider.stopAuto() command - but it doesnt work? I get Firebug errors when I try and use it...
BXSlider code call is:
var slider = $('.bxslider').bxSlider({
mode: 'horizontal',
auto:true,
speed: 1000,
pause: 3500,
controls:true,
pager: false,
keyboardEnabled: true
});
then I was attempting to use
$(document).scroll(function(){
slider = $('.bxslider').bxSlider();
slider.stopAuto();
return false;
});
Any ideas? I also want the slider to restart auto play when scrolling has finished...
Cheers
dubbs.