I have 10 links,which are point towards 10 divs with display:none,When I click one link it should make that div appear and the every div contains tabs.Writing tabs code for every div is space consuming and time taking.Is there any way to code less and accomplish the task?
<a href="#div1">click to see div 1</a>
<a href="#div2">click to see div 2</a>
<a href="#div3">click to see div 3</a>
<div id="div1" style="display:none;">
jquery ui-tabs code
</div>
<div id="div2" style="display:none;">
jquery ui-tabs code
</div>
<div id="div3" style="display:none;">
jquery ui-tabs code
</div>