javascript select element with attribute
document.querySelectorAll('[attrname="value"]');
javascript select element with attribute
document.querySelectorAll('[attrname="value"]');
how to get element by attribute value in javascript
document.querySelectorAll('[data-foo="value"]');
add class queryselector
const element = document.querySelector("#box");
element.classList.add("class-name");
js get element by attribute
//find first element with "someAttr" attribute
document.querySelector('[someAttr]')
js get element by attribute
//find all elements with "someAttr" attribute
document.querySelectorAll('[someAttr]')
query selector has clas
if (document.body.classList.contains('thatClass')) {
// do some stuff
}
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