Been looking lot but couldn't find, 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 doesn't update colors. So what could be the better way to apply alternate colors to that table?
There's an example on this page: