barebones/js/script.js

10 lines
276 B
JavaScript
Raw Normal View History

2013-09-09 17:12:22 +02:00
(function($) {
2012-08-30 22:17:00 +02:00
2013-09-09 17:12:22 +02:00
$('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');
2012-08-30 22:17:00 +02:00
2013-09-09 17:12:22 +02:00
//
})(jQuery);