Skip to content

Instantly share code, notes, and snippets.

@nhunzaker
Created October 5, 2012 14:43
Show Gist options
  • Save nhunzaker/3840202 to your computer and use it in GitHub Desktop.
Save nhunzaker/3840202 to your computer and use it in GitHub Desktop.
Set grid items
function set_grid ($items) {
$items.removeClass("omega").each(function() {
var slot = $(this).index() + 1;
if ( slot % 3 === 0) {
$(this).addClass("omega");
}
});
}
set_grid( $(".product-list-item") );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment