Once the web page is being fully loaded, then the same event handler is not being attached to newly created elements.
It seems like the event handler is being attached conceptually.
When you perform some action on new elements, then the event bind with it not trigger on the new element. But it is working on the elements which are created during the webpage loading.
This problem is common if the event handlers are not correctly attached.