Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
_ Use javascript onclick event to fire the click event.
_ Use ajax to call the server side method and pass the x and y mouse coordinates as parameters
_ below an example of getting x and y coordinates of mouse
function readMouseMove(e){ x = e.clientX; y = e.clientY; }document.onmousemove = readMouseMove;
Steps:
Note: You may have to use some JavaScript.