I have an issue. I have two different main div elements with same sub div elements.
when i want to get table like
table = document.getElementById('list_table');
THis is giving me 1st div table data but i want second div table info.
Can anyone please help me with this. I can not change id names.
Thank you
<div id="container_1">
<div id="my_table">
<table id = "list_table">
</table
</div>
</div>
<div id="container_2">
<div id="my_table">
<table id = "list_table">
</table
</div>
</div>