get element by class
var elements = document.getElementsByClassName(names); // or:
var elements = rootElement.getElementsByClassName(names);
get element by class
var elements = document.getElementsByClassName(names); // or:
var elements = rootElement.getElementsByClassName(names);
Getting Elements by Class Name
let blueThings = document.getElementsByClassName('blue');
console.log(blueThings); // The HTMLCollection
console.log(blueThings[0]); // The first element with class="blue" in the document
console.log(blueThings.length); // The number of elements with class="blue" found
console.log(blueThings.item(2)); // The element at index 2 in the collection
console.log(blueThings.namedItem('specific')); // The element with both class="blue" and id="specific"
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us