Skip to content

Instantly share code, notes, and snippets.

@romeoh
Created October 31, 2012 11:15
Show Gist options
  • Save romeoh/3986504 to your computer and use it in GitHub Desktop.
Save romeoh/3986504 to your computer and use it in GitHub Desktop.
forEach
[].forEach.call(document.querySelectorAll(".func_footer .dim"), function(el) {
el.className = el.className.replace(/dim/g, "").trim();
el.disabled = false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment