I have this js code:

$(".main-vervolg .right .bottom .panes table.grey tbody tr:odd").css("background-color", "#f8f8f8");

And it is working fine but when i have 2 separated tables with the class grey he is counting further in the second table but i want that he will starts again.

How can i do this?

link|improve this question

4  
he == jquery? :) – naveen Jun 24 '11 at 12:06
feedback

1 Answer

up vote 4 down vote accepted

Try the following:

$('.main-vervolg .right .bottom .panes table.grey').each(function() {
  $('tbody tr:odd', this).css("background-color", "#f8f8f8");
});

It loops through all tables with selector

link|improve this answer
Nice :) that will work! – Maanstraat Jun 24 '11 at 12:09
feedback

Your Answer

 
or
required, but never shown

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