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?

link|improve this question

Is this for the jQuery UI tabs? – thedjpetersen Jan 31 at 22:37
3  
Try $('#tabs').tabs('enable', 1) – coletrain Jan 31 at 22:38
Yes it is the jQuery UI tabs – dotNet Zombie Jan 31 at 22:39
thanks Coletrain – dotNet Zombie Jan 31 at 22:40
feedback

4 Answers

up vote 2 down vote accepted

Try $("selector").tabs("enable", n); where n is the index of the tab

link|improve this answer
2  
To enable more than one tab at once reset the disabled property like: $('#example').tabs("option","disabled",[]);. jqueryui.com/demos/tabs/#methods – Rocket Jan 31 at 22:42
feedback

Never used jQuery Tabs but I can't see any option for enabled.

Have you tried to just update the list of disabled tabs to remove tab 1 ?

$("#tabs").tabs({ disabled: [2] });

or

$("#tabs").tabs( "enable" , 1 ); 

(that's in the docs)

link|improve this answer
feedback

I believe you are looking for the .tabs( "option" , optionName , [value] ) method found on this page: http://jqueryui.com/demos/tabs/ (click the "Method" tab and find "option" below).

$("#tabs").tabs( "option" , "disabled" , [2] );

Update

Under the section of the docs for $(selector).tabs('enable', n) there is this statement:

To enable more than one tab at once reset the disabled property like: $('#example').tabs("option","disabled",[]);.

link|improve this answer
feedback

Shouldn't it be $("#tabs").tabs("enable", [1])?

link|improve this answer
1  
I don't know if this works as well but the docs state that you pass in an index, not an array, when using $(selector).tabs("enable", n) – Jasper Jan 31 at 22:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.