Hi Davi,
It is not allowed to have more than one div#tabs
ID's values must be unique in a document.
Regards,
Maurício
-----Mensagem Original-----
De: "David" <omertacod...@gmail.com>
Para: "jQuery (English)" <jquery-en@googlegroups.com>
Enviada em: domingo, 22 de março de 2009 09:55
Assunto: [jQuery] tabs into tabs
Hi,
probably a simple question ...
if i put a new set of tabs into existing tabs, the new tabs does not
show all i get are text hyperlinks...
The code i use:
so if yuou go to the config tab it should show the new set of tabs
<div id="tabs">
<ul>
<li><a href="#tabs-1">Home</a></li>
<li><a href="#tabs-2">Config</a></li>
<li><a href="#tabs-3">other</a></li>
</ul>
<div id="tabs-1">
Welkom bla bla bla
</div>
<div id="tabs-2">
<div id="tabs">
<ul>
<li><a href="#tabs-1">config 1</a></li>
<li><a href="#tabs-2">config2</a></li>
<li><a href="#tabs-3">config3</a></li>
</ul>
<div id="tabs-1">
</div>
<div id="tabs-2">
</div>
<div id="tabs-3">
</div>
</div>