Posts Tagged ‘javascript browser based event

In this post I simply showing how to find the cursor position in the window screen. function showPositionOnClick(evt) { var e = (window.event) ? window.event : evt; alert(e.clientX); } When user click on this button...