I disabled the tab like this:
$("#tabs").tabs({ disabled: [1, 2] });
But when I try to enable one of the tabs it is not working:
$("#tabs").tabs({ enabled: [1] });
Is there something I'm doing wrong here?
|
I disabled the tab like this:
But when I try to enable one of the tabs it is not working:
Is there something I'm doing wrong here?
| ||||
|
feedback
|
|
Try | |||||
feedback
|
|
Never used jQuery Tabs but I can't see any option for Have you tried to just update the list of disabled tabs to remove tab 1 ?
or
(that's in the docs) | |||
|
feedback
|
|
I believe you are looking for the
UpdateUnder the section of the docs for
| ||||
|
feedback
|
|
Shouldn't it be | |||||
feedback
|
$('#tabs').tabs('enable', 1)– coletrain Jan 31 at 22:38