How can I get the ID of a child node of an element when the parent node has many child nodes?
<div id="parentID">
<div id="id_1"></div>
<div id="id_2"></div>
<div id="id_3"></div>
...
<div id="id_n"></div>
</div>
In the above code example, how can I get the ID of any child node when the user clicks it?