You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'am currently working on a personalization projekt where I want to change the Slider Contents according to some segments. The problem is the timing. When i change the DOM Content the slider has already been initialized. You can see the implementation here: https://www.flatex.de/
Do you know any possibility to destroy and reinitialize the Slider?
Or a safe way to stop the AutoSlide Timeout after(!) I replaced the DOM with the slider in it?
var api = $.data( $('.liquid-slider')[0], 'liquidSlider'); does not work any more when the DOM-Element has been replaced.
Thank you in advance
Tobias
The text was updated successfully, but these errors were encountered:
Unfortunately, destroying/rebuilding is one feature I never got around to adding. You might be able to add a slide in and rerun all the events. You could try to just call api.build() after the code you have there, but it might double up on some things. You could also look inside the build function and just update the variables etc that are inside there.
Hi Kevin,
I'am currently working on a personalization projekt where I want to change the Slider Contents according to some segments. The problem is the timing. When i change the DOM Content the slider has already been initialized. You can see the implementation here: https://www.flatex.de/
Do you know any possibility to destroy and reinitialize the Slider?
Or a safe way to stop the AutoSlide Timeout after(!) I replaced the DOM with the slider in it?
var api = $.data( $('.liquid-slider')[0], 'liquidSlider');
does not work any more when the DOM-Element has been replaced.Thank you in advance
Tobias
The text was updated successfully, but these errors were encountered: