TubbyStubby
TubbyStubby

Reputation: 156

How can I get a particular element with JavaScript if there are many with same class?

I have this code. How can I get 'a' of 'div1':

<div id="div1">
    <div class="a"></div>
    <div class="b"></div>
</div>
<div id="div2">
    <div class="a"></div>
    <div class="b"></div>
</div>

Thanks for help. Just started learning JavaScript.

Upvotes: 0

Views: 29

Answers (1)

timolawl
timolawl

Reputation: 5564

This should do it:

document.querySelector('#div1 > .a');

Together, this specifically selects the <div class="a"> element that is a child of <div id="div1">.

Upvotes: 4

Related Questions