Skip to content

Instantly share code, notes, and snippets.

Created May 21, 2016 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/ead663a3c2a78aa7d0f47288ce884a7b to your computer and use it in GitHub Desktop.
Save anonymous/ead663a3c2a78aa7d0f47288ce884a7b to your computer and use it in GitHub Desktop.
var paragraphs = document.querySelectorAll("p");
function setElementToClass(){
for (var i = 0; i < paragraphs.length; i++){
{
paragraphs[i].classList.add('bodyCopy');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment