Is there any kind of event listener in javascript which checks if any new child node is added to the target node? If not, is there any way to keep track of a particular node to check if a new child Node is added to it
To Make my question more comprehensive I'll use a small example, So consider,
<ul>
<li></li>
<li></li>
</ul>
So in the above context can we add an eventListener to ul Node to check if a new li node is added to it(dynamically via js) ?