Answers for "add style to a class in javascript"

0

js add style to each class

var all = document.getElementsByClassName('someClass');
for (var i = 0; i < all.length; i++) {
  all[i].style.color = 'red';
}
Posted by: Guest on June-29-2020

Code answers related to "add style to a class in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language