I am very new to jquery but I wanted to learn this for my new project. I was trying the tab control in jquery. I got it to work for a static tab but now I need to make it dynamic. I am not even sure if this is possible. So instead of doing this <ul id="ulTabs" runat ="server">
<li>
<a href="#" rel="#tab_1_contents">Tab 1</a>
</li>
<li><a href="#" rel="#tab_2_contents">Tab 2</a></li>
<li><a href="#" rel="#tab_3_contents">Tab 3</a></li>
</ul><ul class="tabs" id="ulTabs" runat ="server">
<li class="active">
<a href="#" rel="#tab_1_contents" class="tab">Tab 1</a>
</li>
<li><a href="#" rel="#tab_2_contents" class="tab">Tab 2</a></li>
<li><a href="#" rel="#tab_3_contents" class="tab">Tab 3</a></li>
</ul>
Jquery for this -
// Load this scri
View Complete Post