Files
SIA/tools/itb/js/mouse.js
2024-12-26 17:36:59 +01:00

13 lines
318 B
JavaScript

function getMousePosition() {
return {
screenX: window.screenX,
screenY: window.screenY,
clientX: window.event ? window.event.clientX : 0,
clientY: window.event ? window.event.clientY : 0
};
}
function getElementAtPosition(x, y) {
return document.elementFromPoint(x, y);
}