I need to get all the direct children of an element. As it is here:
<div class='1'>
<div class='2'>
<div class='3'></div>
</div>
<div class='2'></div>
</div>
I need the two DIVs with class "2" using the one with class "1". Plain JavaScript - no libraries.
(They are the same class in this example just to be more clear. In my need they are with different, unknown classes.)