hello i have some nested divs. i want to know the index of div, which has class "row". when button is clicked i want to get div (class "raw" ) index of respected button. these div ( class raw ) are created by for loop so eventListener is not working.
<div class="container">
<div class="row">
<button>Click</button>
</div>
<div class="row">
<button>Click</button>
</div>
<div class="row">
<button>Click</button>
</div>
</div>
please help me