If there are more than one tab(jquery ui tab) some of them are disable and some enable. How to get all enable tabs?
Jquery ui how to selects tabs those are enable?
72 Views Asked by Mystery At
3
If there are more than one tab(jquery ui tab) some of them are disable and some enable. How to get all enable tabs?
It is the class added to the diabled tabs
and similarly
$('.ui-state-default:not(.ui-state-disabled)')
will give the enabled tabs.Demo: http://jsfiddle.net/GCu2D/424/