I have used Jquery UI Tabs, and given close option to the tabs. By default i am creating three tabs and its corresponding three divs. Now when i close a tab then the tab and its div are removed. I need to just hide the tab and div and when i click Add Tab i should just show the hidden tab and div. I am not sure how to show/hide the tab and div property.
Thanks in advance.
Jeevi
.ui-tabs .ui-state-disabled { display: none; }
since if you have any disabled JQueryUI elements (such as a temporarily disabled button) on a non-disabled tab, they will be hidden as well. I would change it to.ui-tabs>.ui-tabs-nav>.ui-state-disabled
so only the tabs get hidden. Note: This is against JQueryUI 1.9.2 – Neolatin