javascript select element with attribute
document.querySelectorAll('[attrname="value"]');
javascript select element with attribute
document.querySelectorAll('[attrname="value"]');
js querySelectorAll
// https://www.google.com/
// this puts a border around the 'a' tags of 'Google offered in' section.
// within this id find all the 'a' tags
var languages = document.querySelectorAll("#SIvCob a");
// loop through all the a tags a add a border to the tags
for(var i = 0; i < languages.length; i++){
document.querySelectorAll("#SIvCob a")[i].style.border = "1px solid black";
}
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