Reputation: 1864
I've tried a few different methods (one that involved getSelection that didn't quite work, another involving lot of inserted code that turned out to be buggy as a termite mound). For a script I'm writing, I need to get whatever div the mouse is currently hovering over (preferably without having to add event listeners to every single div in the entire page.)
Notes: This is not asking if the mouse is over a specific div, or getting the XY position of an element. I can get the XY coordinates of the mouse. So either a direct mouse-to-div or a XY-coordinates-to-div would suffice.
Upvotes: 0
Views: 591
Reputation: 4365
You just need one event listener:
window.addEventListener('mousemove', function(e) {
console.log(e.target);
// ^^^^^^^^ your desired element is here.
});
Upvotes: 1