I have an add button for adding new tabs. The tab list is also sortable.

When clicking the button to add a new tab it gets "ui-state-disabled" added to its class dynamically. It's pretty annoying.

The add button is part of the tab. I am dynamically adding it after my tabs have rendered.

$('#tabs').append('<li id="tab-add" class="noSort"><a href="#" alt="Add Tab" title="Add Tab" class="add-tab"></a></li>');

Is there a reason why ui-state-disabled gets added and can I turn it off?

In firebug I can clearly see ui-state-disabled is added after noSort.

Thank you.

link|improve this question

76% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Your tab has no href attribute (# actually), which makes jQuery-UI tabs() method to disable it:

https://github.com/jquery/jquery-ui/blob/master/ui/jquery.ui.tabs.js#L264

link|improve this answer
Thanks, that's most likely it. But my button has no panel and thus needs no link. With a link I get an exception thrown because no panel exists. – Haraldo May 3 '11 at 3:08
After you call the tabs method, find the new li element and remove the ui-state-disabled class: jsfiddle.net/8UUwg – marcosfromero May 3 '11 at 3:43
Having href="#dummy" also worked for me. – Fortunato Jan 23 at 14:56
feedback

Your Answer

 
or
required, but never shown

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