First of all, excuse my 'Tarzan' english... I have a tipical JQuery tab's code like that:
<div id="tabs">
<ul>
<li><a href="#tabs-1">One</a></li>
<li><a href="#tabs-2">Two</a></li>
<li><a href="#tabs-3">Three</a></li>
</ul>
</div>
And I have three forms inside each tab something like that:
<div id="tabs-1">
<form id="alpha">
...
<input type="submit" value="send"/>
</form>
</div>
<div id="tabs-2">
<form id="beta">
...
<input type="submit" value="send"/>
</form>
</div>
<div id="tabs-3">
<form id="gamma">
...
<input type="submit" value="send"/>
</form>
</div>
After doing a submit, page reloads and it changes to the very first tab (#tabs-1). My question is: How do I do to restart my page in a desired tab after submitting any form? For example, if I submit the "gamma" form, I want the page to reload in #tabs-3.
Can I do it?
Thanks in advance!