-1
Preferably without using frameworks.
-1
Preferably without using frameworks.
2
You can capture this with an Event Listener:
document.querySelector('body').addEventListener('mousemove', function(event) {
var posX = event.clientX,
posY = event.clientY;
});
Browser other questions tagged javascript
You are not signed in. Login or sign up in order to post.
Thank you, Luan!
– Seu Madruga
For nothing! I’m glad I could help.
– Luan Vicente