barebones/js/script.js

10 lines
276 B
JavaScript
Executable File

(function($) {
$('li:last-child,td:last-child,tr:last-child,th:last-child').addClass('last');
$('td:nth-child(odd),th:nth-child(odd),tr:nth-child(odd)').addClass('odd');
$('td:nth-child(even),th:nth-child(even),tr:nth-child(even)').addClass('even');
//
})(jQuery);