Answers for "queryselectorall input"

1

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";

}
Posted by: Guest on May-22-2021
1

js queryselector find without attribute

var test = document.querySelectorAll('input[value][type="checkbox"]:not([value=""])');
Posted by: Guest on October-16-2020
3

javascript queryselectorall

<article class="article first">
  <div class="wrapper"> 
    <div class="oferts"> 
      <div class="pro"></div> 
      <h1>This is the Pro Version</h1>  
    </div>
    <div class="oferts"> 
      <div class="normal"></div> 
      <h1>This is the normal Version</h1>  
    </div>
  </div>
</article>


// You will get a NodeList as Output
// Try to do : console.log(typeof(oferts)) And you will see the type
<script>
var articleFirst = document.querySelectorAll("article.first");
console.log(articleFirst)
var oferts = articleFirst[0].querySelectorAll(".oferts");
console.log(oferts)
</script>
Posted by: Guest on November-16-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language