I have an issue which block me.
I want a slider/slideshow in my HTML generated page with javascript. In my web application I have 2 steps: - a div with a form - a div with results
When i click on my "ok" button, first div is not shown and second div is displayed (it's ok). Depending on the results, i want to display on my second div a slider / slideshow with severals images.
I have found severals jquery sliseshow, tested them in a simple html page it's worked, but when I put them in my javascript code which generate the div element, then slider is not displayed!
sample of my code:
works at the end of the page in the HTML side:
Slider :
it's working
but when i put it in the javascript, it's not displayed!!!
result_html += "<div class='slider-wrapper theme-default'><div id='imgslider' class='nivoSlider'><img src='nivo-slider/demo/images/toystory.jpg' alt='' data-transition='slideInLeft'><img src='nivo-slider/demo/images/up.jpg' alt='' data-transition='slideInLeft'><img src='nivo-slider/demo/images/walle.jpg' alt='' data-transition='slideInLeft'><img src='nivo-slider/demo/images/nemo.jpg' alt='' data-transition='slideInLeft'></div></div>";
document.getElementById("result").innerHTML = result_html;
I have tested with severals slideshow, so have you some ideas?
Thanks!