Skip to content

Instantly share code, notes, and snippets.

@MayogaX
Created September 25, 2013 19:49
Show Gist options
  • Save MayogaX/6705060 to your computer and use it in GitHub Desktop.
Save MayogaX/6705060 to your computer and use it in GitHub Desktop.
jquery add class for all buttons that hasn't
$(":button").each(function () {
if (!$(this).hasClass('btn')) {
$(this).addClass("btn-primary");
$(this).addClass("btn");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment