To create zebra table effect with jQuery and CSS you can use the following snippet.
jQuery
$("tr:odd").addClass("oddRowsEffect");
in the css you need something like
tr.oddRowsEffect{ /* background: choose a color; * /* color: choose a color; * }
To create zebra table effect with jQuery and CSS you can use the following snippet.
$("tr:odd").addClass("oddRowsEffect");
in the css you need something like
tr.oddRowsEffect{ /* background: choose a color; * /* color: choose a color; * }