I'm using jQuery UI tabs(). It adds "ui-tabs-selected" to the selected LI, but each LI has an ID because it's different. Due to the multi ID/class bug in IE6, I need to apply a "selected" class to the anchor that is inside the "ui-tabs-selected" LI.

Can someone tell me how to do this?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

you can do

$('li.ui-tabs-selected a').addClass('yourclass');

To manually add a class to any of the tabs you can do assuming your ul has the id #tabs

$('#tabs li a').eq(1).addClass('yourclass'); //this will add class to second tab

Updated Answer Use the select event to trigger addClass()

$('#wrap').tabs({
    select: function(event, ui) {
        $(this).find('li a').removeClass('myclass').eq(ui.index).addClass('myclass')
    }
});

Check working example at http://jsfiddle.net/6JryL/

link|improve this answer
Nothing seems to be happening. Wouldn't this need to be added in an Event Listener in order for the class to be applied? – Cofey Apr 23 '11 at 15:28
@Cofey, Yes you need to use the select event to trigger addClass. Check updated answer with working jsfiddle example. – Hussein Apr 23 '11 at 19:16
Excellent. Thank you! – Cofey Apr 23 '11 at 23:02
feedback
$('.ui-tabs-selected a').addClass('selected');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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