Reload slider with new settings
JS:
var slider = $('.bxslider').bxSlider({
mode: 'horizontal'
});
$('#reload-slider').click(function(e){
e.preventDefault();
slider.reloadSlider({
mode: 'fade',
auto: true,
pause: 1000,
speed: 500
});
});
HTML:
<ul class="bxslider">
<li><img src="/images/730_200/tree_root.jpg" /></li>
<li><img src="/images/730_200/hill_road.jpg" /></li>
</ul>
<p><a href="" id="reload-slider">Click to reload slider with new settings</a></p>
Examples
- Image slideshow with captions
- Auto show with start / stop controls
- Manual show without infinite loop
- Slideshow using adaptiveHeight
- Carousels demystified - in depth explanation with examples
- Carousel - static number of slides showing
- Carousel - dynamic number of slides showing
- Thumbnail pager - method 1
- Thumbnail pager - method 2
- Vertical slideshow
- Custom next / prev control selectors
- Multiple slideshows
- Callback API
- Public methods
- Responsive video
- Ticker mode
- Custom easing
- Reload slider
- Reload slider with new settings

