Skip to content

Instantly share code, notes, and snippets.

@rbren
Last active August 15, 2017 18:02
Show Gist options
  • Save rbren/6280475e67b08f89ebeb182926d51361 to your computer and use it in GitHub Desktop.
Save rbren/6280475e67b08f89ebeb182926d51361 to your computer and use it in GitHub Desktop.
// In traditional JavaScript
var messages = document.getElementsByClassname('message');
messages.forEach(function(message) {
message.className = message.className + " visible";
});
// With jQuery
$('.message').addClass('visible');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment