Skip to content

Instantly share code, notes, and snippets.

@clare485
Created August 9, 2013 16:08
Show Gist options
  • Save clare485/6194867 to your computer and use it in GitHub Desktop.
Save clare485/6194867 to your computer and use it in GitHub Desktop.
jquery add classname to div
//Add classname to attribute exclusive
$(".attribute-exclusive").each(function () {
var self = $(this);
self.addClass(self.text());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment