I have three tabs and I would like to populate those tabs with section contents that is already present on the page:
<section class="rbs-section" id="rbi_S_12466479" name="world1">
<p>Hello World1</p>
</section>
<section class="rbs-section" id="rbi_S_12466477" name="world2">
<p>Hello World2</p>
</section>
<section class="rbs-section" id="rbi_S_12466478" name="world3">
<p>Hello World3</p>
</section>
My TabStrip:
<div id="tabstrip">
<ul>
<li class="k-state-active">
World1
</li>
<li>
World2 </li>
<li>
Wordl3
</li>
</ul>
</div>
Javascript:
$(document).ready(function() {
$("#tabstrip").kendoTabStrip({
animation: {
open: {
effects: "fadeIn"
}
}
});
});
How can I use Kendo TabStrip code to use my custom sections in those tabs? Kindly let me know.
Cheers.