I need to create dynamic sliders within tabs that can change content dynamically.
My development platform is ASP.NET MVC 5 and I'm using JSON data format.
What's the best way to implement this dynamic slider feature for each tab?
<div class="container" style="overflow-x:hidden;">
<section>
<ul id="myTab2" class="nav nav-tabs nav-tabs-style-2">
<!-- Tab links-->
</ul>
<div class="tab-content">
<div class="fade tab-pane" id="tab2-1">
<!-- Slider content for tab 1 -->
</div>
...
(Repeat for all tabs)
...
<div class="fade tab-pane" id="tab2-4">
<!-- Placeholder message for tab 4 -->
</div>
</div>
</section>
</div>