Basically I have three small div sections with the same class name(box) and I want to select the second one so I can select another p-Tag etc.
So far this is what I tried :
var select = document.querySelectorAll('.clearfix box box');
Of course, how this is written is wrong and I have no other ideas.
Html :
<div class="box">
<p>Nulla consequat massa quis enim. Donec pede justo,fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus
ut, imperdiet a, venenatis vitae, justo.</p>
</div>
<div class="box">
<p>Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus
ut, imperdiet a, venenatis vitae, justo.</p>
</div>
<div class="box">
<p>Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus
ut, imperdiet a, venenatis vitae, justo.</p>
</div>