Open tukao89 opened 11 years ago
I had to come back and edit this comment. It's not a bug. The reloadSlider
method is meant to accept a settings object. Put your settings into an object for passing both to your original initialization and your reload.
var settings = {}
, slider
;
settings = {
pagerCustom = '#pager'
};
slider = $('.bxslider').bxSlider(settings);
slider.reloadSlider(settings);
This should retain your settings after reloads.
This issue can be closed.
Ack I guess I spoke too soon. Even if you pass the pagerCustom
option the whole element is removed from the DOM when you run the reloadSlider
method.
Still a bug. Reloading the slider removes the custom pager element from the DOM.
Hi, I tried reload my slider by using:
No error found but pager is removed. How can i keep pager visible?