Buenas disculpen mi ignorancia.
Hoy por primera ves queria saver las cordenadas del mouse y imprimirlas en un div al hacer crick en un td de una tabla bueno asta hay bien el tema esque cuando ago crick en td borra todo el tr u.u pero imprime las cordenadas
Este es el codigo
Código:
<html>
<head>
<script>
var Posx = 0 ; var Posy = 0;
/*window.onclick = function(e){
Posx = e.clientX;
Posy = e.clientY;
}*/
function show_coords(event)
{
var x=event.clientX
var y=event.clientY
document.getElementById('da').innerHTML += ' Viendo X ' + x +"Y "+ y;
}/*
function mostrar(e){
document.getElementById('divv').innerHTML = ' Viendo <br />';
document.getElementById('divv').innerHTML += ' Viendo X ' + Posx +"Y "+ Posy;
var documento = document.getElementById('divv');
documento.style.top = Posx + 5;
documento.style.left = Posy;
documento.style.display = 'block';
}*/
</script>
</head>
<body><table>
<tr><th>Id</th><th>IMG</th><th>Nombre De Usuario</th><th>Nombre</th><th>Apellido</th><th> Registrado el </th><th>Rango</th></tr>
<tr onclick='this.innerHTML = 1;' style='border:1px solid red;'><td style='width:20px;'>0</td><td style='width:25px;'><img src='imagenes/usuarios/' width=25 /></td><td onmousedown='show_coords(event);'>JoaquinBZ</td><td>Joaquin</td><td>Juan</td><td>17-20-1996</td><td>Nuevo</td></tr></table>
<div id='da'></div>
</body>
</html>
Si me pueden ayudar muchas gracias.