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
x
10
10
1
const selector = document.querySelector('#selectorId');
2
3
if (selector) {
4
selector.addEventListener('mouseenter', e => {
5
e.stopPropagation();
6
myFunc();
7
8
}, false);
9
}
10
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
1
25
25
1
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
2
3
const observer = new MutationObserver(function (mutations, observer) {
4
// fired when a mutation occurs
5
(function () {
6
const selector = document.querySelector('#selectorId');
7
8
if (selector) {
9
selector.addEventListener('mouseenter', e => {
10
e.stopPropagation();
11
alert('bbb');
12
13
}, false);
14
}
15
})();
16
});
17
18
// define what element should be observed by the observer
19
// and what types of mutations trigger the callback
20
observer.observe(document, {
21
subtree: true,
22
attributes: true
23
//...
24
});
25
thanks to @apsillers for useful trick in the following thread: Is there a JavaScript / jQuery DOM change listener?