I'm using a pretty simple implementation of the JQuery Tabs UI element. There is a form in the first tab that I am trying to have load the second tab with the onsubmit event. In ActionScript, I could use:
tabBar.selectedIndex = n;
Where selectedIndex
is the tab number that has focus.
Is there a way to get this done in Jquery?
$('ele').tabs('select', index)
where index is the0 based
representation of the tabs from LTR. – Executory