The table on this page is sorted by the tablesorter plugin. The candy-striping is not re-applied after sorting, so the shaded and unshaded rows appear in the wrong sequence after a sort is performed. Click on the Name column to see an example of this.
Is there a way to redo the striping after a sort?
.tablesorter tr:nth-child(even)will select the even rows of a table and.tablesorter tr:nth-child(odd)will select the odd rows: developer.mozilla.org/en/CSS/:nth-child - Jasper