Skip to content
Advertisement

Is there a way to add ‘live’ Event listener for mouseenter event type with pure JS

I’m trying to add a live version of event listener in pure JavaScript to monitor a mouseenter event in order to execute specific function each time the user enters his mouse on specific element.

Here is what I have, but it’s not continuously monitoring the mouseenter:

JavaScript

the goal is to keep listening to this event even after DOM update

Any thoughts?

Advertisement

Answer

Well, after some research I got to conclusion, that using a mutation observer is a way to go.

Here is a solution I’m happy with, for anyone else, who would stack to to same problem:

JavaScript

thanks to @apsillers for useful trick in the following thread: Is there a JavaScript / jQuery DOM change listener?

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement