Skip to content

Instantly share code, notes, and snippets.

@nickberens360
Created August 23, 2018 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickberens360/5a2190db299ca6955ad0cf87f98f2d37 to your computer and use it in GitHub Desktop.
Save nickberens360/5a2190db299ca6955ad0cf87f98f2d37 to your computer and use it in GitHub Desktop.
var i = 0;
$('.progressBlock').each(function(){
if(i<6){
i++;
}
else{
i = 1;
}
$(this).addClass('progressBar-' + i);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment