Skip to content

Instantly share code, notes, and snippets.

@jp26jp
Created June 16, 2016 19:53
Show Gist options
  • Save jp26jp/f969fadafa8fa695a46c30a7e7dc6052 to your computer and use it in GitHub Desktop.
Save jp26jp/f969fadafa8fa695a46c30a7e7dc6052 to your computer and use it in GitHub Desktop.
Incrementally add a new ID to each selector
var i = 0;
$('.class').each(function() {
i++;
var newID = 'section'+i;
$(this).attr('id',newID);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment