Without resorting to using jQuery, how could one find a replacement function in Javascript or CSS to simulate the css:
table#report tr:nth-child(odd) { background-color:#eeeeee; }
table#report tr:nth-child(even){ background-color:#ffffff; }
I am at a loss and have to find a work around for the above.
Here is a solution using javascript and css clases:
JS:
css:
And a jsfiddle demo: http://jsfiddle.net/rNTH8/2/