Answers for "getting document by class name"

0

get element by class

var x = document.getElementsByClassName("example");
var i;
for (i = 0; i < x.length; i++) {
  x[i].style.backgroundColor = "red";
}
Posted by: Guest on March-10-2021

Code answers related to "getting document by class name"

Code answers related to "Javascript"

Browse Popular Code Answers by Language