var x,y; | |
document.onmousemove = function(e){ | |
e = e || window.event; | |
x = e.clientX; | |
y = e.clientY; | |
}; | |
function elementAtMousePosition() { | |
return document.elementFromPoint(x,y); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment