Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created August 26, 2013 17:12
Show Gist options
  • Save jbutko/6343975 to your computer and use it in GitHub Desktop.
Save jbutko/6343975 to your computer and use it in GitHub Desktop.
jQuery, WP: Add class to every 3rd Xth element
var i = 1;
$('#row .fourcol').each(function() {
if(i++ % 4 == 0)
$(this).addClass('last');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment