Link a Tab from another Tab
Hi all,
I'm new into jQuery UI.
I'm trying to add a link in a tab that points to another tab. Here is
an example :
<div id="tabs">
<ul>
<li><a href="#Home">Home</a></li>
<li><a href="#My_preferences">My Preferences</a></li>
</ul>
<div id="Home">
<a href="LINK TO PREFERENCES TAB">My Preferences</a></
p>
</div>
<div id="My_preferences">
Some preferences
</div>
</div>
how can do that that with jQueryUI ?
Thank you very much !
--