mouseenter
Mouseenter is a mouse event in the web browser DOM that fires when the pointer enters the boundary of a specified element. It is part of the standard set of mouse events used to respond to pointer movement and is supported by modern browsers.
Unlike the related mouseover event, mouseenter does not bubble up through the DOM and generally fires only
Usage typically involves listening for the event with addEventListener or an onmouseenter attribute, for example: element.addEventListener('mouseenter',