Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created October 13, 2013 17:45
Show Gist options
  • Save jbutko/6965098 to your computer and use it in GitHub Desktop.
Save jbutko/6965098 to your computer and use it in GitHub Desktop.
jQuery, WP: Add class to every third element
// .THIRD CLASS TO EVERY THIRD ARTICLE
var i = 1;
$('article').each(function() {
if(i++ % 3 == 0)
$(this).addClass('third');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment