I need to adjust the CSS of one element when a tab is clicked if a particular class ('current') is present. The class 'current' is added when the tab is clicked. The code I have works, but it takes two clicks - I think because on the first click, the class is added and then on the second, jQuery detects it. Here's the jquery code:
$('ul.tabs a').click(function() {
if($('a#tab5').hasClass('current')) {
$('#rightCorner').css("top","1px");
} else {
$('#rightCorner').css("top","7px");
};
})
Is there a way to get it to work with one click?
Thanks - Joe