'jQuery UI Navigation
I am using jQuery UI Tabs where I have 3 tabs (T1,T2 and T3) displayed and have the following setup:
$(function(){
$tabs = $("#tabs_start_reg");
$tabs.tabs();
$tabs.show();
});
I have the following queries relating to jQuery UI tabs.
Using jQuery:
How can I determine which tab the user has currently clicked on?
How can I calculate the total amount of tabs I am using, in this case 3?
Within the current tab that I am on, I need to branch to another page within my website that falls outside of my jQuery UI tabs and perform some tasks there and then return back.
Now, how can I first store the tab that I am currently on, branch off to another page in the same website and then be able to return back to the tab that I was originally on?
Is this possible?
Solution 1:[1]
1) jQuery UI Tabs Get Currently Selected Tab Index
2) count the number of existing tabs in jquery?
3) http://forum.jquery.com/topic/jquery-ui-tabs-remember-currently-selected-tab-after-refresh
The magic of Google :-)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Community |
