Skip to content

Instantly share code, notes, and snippets.

@brunobar79
Created January 13, 2015 18:37
Show Gist options
  • Select an option

  • Save brunobar79/9c356971883fefe5471a to your computer and use it in GitHub Desktop.

Select an option

Save brunobar79/9c356971883fefe5471a to your computer and use it in GitHub Desktop.
applyToClassElements
function applyToClassElements(className,property,value){
var elements = document.querySelectorAll(className);
for(var i=0;i< elements.length; i++){
elements[i].property = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment