Hey, been looking lot but couldn't found=/, apply alternate row colors via jquery on $(document).ready event.
$(document).ready(function(){

//Member Directory Table  
$('.MemberDetail table tr:odd ').css('background','#F0F0EC');  

}

colors applied, but when table is updated with ajax request , it doesnt update colors , so what could be the better way to apply alternate colors to that table, here is example on this page
Here Dynamic Table
thanks in advance btw =)

link|improve this question
feedback

3 Answers

You should use this script when Ajax is Complete. I mean something like

$.ajax({
  url: 'ajax/test.html',
  success: function(data) {
    //to do your jQuery code again;
    $('.MemberDetail table tr:odd ').css('background','#F0F0EC');
  }
});
link|improve this answer
feedback

Just update the table again:

$('.MemberDetail table').find('tr:odd').css('background','#F0F0EC').end().find('tr:even').css('background','#fff');

There's no magic way to automatically maintain those colours, just have to update each time you update the table.

link|improve this answer
feedback

you'll have to execute the table color funtion again, after the ajax request

function ajax() {
doAjaxStuff();

$('.MemberDetail table tr:odd ').css('background','#F0F0EC');
}
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.