?????
Básicamente en tu código ya puedes usar los valores obtenidos...
"x" & "y" representas los valores que se obtienen.
entonces... sería algo así por el estilo.
Código Javascript
:
Ver originalvar PonintX, PointY;
function coordenadas(event) {
PointX=event.clientX;
PointY=event.clientY;
document.getElementById("x").value = PointX;
document.getElementById("y").value = PointY;
}
Y manejas PointX y PointY por que son los valores que obtiene al ejecutar tu función. si esto no es a lo que te referias pues trata de explicarte un poco mejor.
EXITO !!!