0
I own a <div>
with several children, as shown below:
<div id="minha-div>
<span class="filhos-1" id="filho-1"><!-- outros aqui --></span>
<p class="filhos-2" id="filho-2"><!-- outros aqui --></p>
<div class="filhos-1" id="filho-3">
<span class="filhos-2" id="filho-4"><!-- outros aqui --></span>
</div>
</div>
And I want to perform operations with the child elements of <div>
, similar to the pseudocode below:
var pai = document.getElementById("minha-div");
// retorna os elementos #filho-1 e #filho-3
var filhos1 = pai.pesquisa('.filhos-1');
// retorna os elementos #filho-2 e #filho-4
var filhos2 = pai.pesquisa('.filhos-2');
How should I proceed to perform these selections without using JQuery
?