I have an example div with slides:
<div u="slides" ...>
<div id="slide1">**original content 1**</div>
<div id="slide2"><!-- any content of slide2 --></div>
</div>
I've found one answer here jssor slider: How to reload/refresh the slider to show new images that says:
'You can place any content in each slide and you can remove/insert elements freely at runtime.'
So I have tried it, I changed content of one particular slide:
$('#slide1')[0].innerHTML = 'new sample content of the slide';
after executing the assignment as above my slide still SHOWS 'original content 1' however when doing alert($('#slide1')[0].innerHTML)
I am getting what I want [i.e.: 'new sample content of the slide'].
How do I make jssor slider to reflect changes applied to the slide?