Pit: Javascript und css-Selectoren

Beitrag lesen

Hallo,

wie kann ich aus

       <section class="gallery">
           <a href="./img/gallery/123.jpg">
		   <figure id="0"> 
          <img src="./img/gallery/123.jpg"/>
          <figcaption>Text Nummer 1</figcaption>
           </figure>
		   </a>
		   <a href="./img/gallery/234.jpg">
           <figure id="1">
            <img src="./img/gallery/234.jpg"/> 
            <figcaption>Text Nummer 2</figcaption>
           </figure>
		   </a>
usw.
</section>

ein Array machen, das indexbasiert alle Figcaptions beinhaltet?

Ich habs über allFigCaption = document.querySelectorAll(".gallery figcaption"); versucht, dann habe ich aber alle Nodes im Srray und viel zu viele Informationen.

Ich hätte aber gerne nur die reinen Texte.

Kann mir da jemand unter die Arme greifen?

Pit