AJAX loaded jquery sriped table
Hi
I am using JQuery Tabs plugin which can be found here:
http://stilbuero.de/jquery/tabs/
The problem is that the content returned from my AJAX Call is a table which i want to stripe even/odd rows.
but
-
$(document).ready(function(){
$("table.striped tbody tr:odd").addClass("odd");
$("table.striped tbody tr:even").addClass("even");
});
doesn't work for tables returned by AJAX Call but works on any static tables.
please help.