Answers for "queryselectorall class"

1

queryselectorall

//To obtain a NodeList of all of the <p> elements in the document:
const matches = document.querySelectorAll("p");

//This example returns a list of all <div> elements within the document with a class of either note or alert:
const matches = document.querySelectorAll("div.note, div.alert");

//Here, we get a list of <p> elements whose immediate parent element is a <div> with the class highlighted and which are located inside a container whose ID is test.
const container = document.querySelector("#test");
const matches = container.querySelectorAll("div.highlighted > p");
Posted by: Guest on July-30-2021
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
0

document.queryselectorall extract all href element

[].forEach.call( document.querySelectorAll('img.PinImageImg'), 
function  fn(elem){ 
    console.log(elem.src);
});
Posted by: Guest on November-24-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language