i have created tabs dynamically with my own indexes . but when try to add the tab jquery is giving it's own index .
how avoid default index creating .
Example :
<ul>
<li> <a href="#dummy-0" > </a></li>
</ul>
<div id="dummy-0"></div>
When i try to create dynamically with my own index '0' it is creating but at the same time it is generation its own index .
How do I avoid this? Please help me.