Skip to content

Instantly share code, notes, and snippets.

@batandwa
Created July 10, 2012 13:14
Show Gist options
  • Save batandwa/3083163 to your computer and use it in GitHub Desktop.
Save batandwa/3083163 to your computer and use it in GitHub Desktop.
jQuery table odd row
$("table tr:odd").addClass("odd");
$("table tr:even").addClass("even");
$("table tr:first-child").addClass("first");
$("table tr:last-child").addClass("last");
$("table td:odd").addClass("odd");
$("table td:even").addClass("even");
$("table td:first-child").addClass("first");
$("table td:last-child").addClass("last");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment