Given 2 sliders on one page, the first is "slider1", the second is "slider2"
<script> jssor_slider1_starter = function (containerId) { ... }; jssor_slider2_starter = function (containerId) { ... }; </script> <div id="slider1_container" style="position: relative; top: 0px; left: 0px; width: 600px; height: 300px;"> ... <script> jssor_slider1_starter('slider1_container'); </script> </div> <div id="slider2_container" style="position: relative; top: 0px; left: 0px; width: 600px; height: 300px;"> ... <script> jssor_slider2_starter('slider2_container'); </script> </div>
source share