UCENwebster
Programmer
I have a script that needs to know the coordinates of the mouse every half second, like this:
setInterval( 'CheckMouseXY()', 500);
But I only know how to check the mouse coordinates using an event object:
event.screenX or event.screenY
What I need is a way to check the mouse without using a preexisting event. It needs to be IE4 and NN6 compatible, too. Any suggestions?
setInterval( 'CheckMouseXY()', 500);
But I only know how to check the mouse coordinates using an event object:
event.screenX or event.screenY
What I need is a way to check the mouse without using a preexisting event. It needs to be IE4 and NN6 compatible, too. Any suggestions?