how do I get the x,y coordinates from a HTML element relative to screen?
I'm using x,y from getBoundingClientRect()
as below, but as you can see in the blow image, if I use move the cursor to this x,y position, the curson is in the middle between 0 and + buttons not the 5 button, which is the target button.
What am I missing?
JS code:
var e = document.querySelector('input[id=five]');"
var r = e.getBoundingClientRect();
var x = r.x;
var y = r.y;
MoveMouseTo(x,y); // imaginary call, the real cursor move is done by C# but I can share the code, as needed.
Image:
NOTE: if this aditional info may help, it's a C# application with embedded browser.
You're going to want to assign this function to a
onmousemove
event to the outermost div containing the UI for your calculator. This should at least show you the difference between a screen X,Y and a client X,Yhttps://www.w3schools.com/code/tryit.asp?filename=FVXZOK1SPTR0