19/04/2005, 10:44
|
| | Fecha de Ingreso: marzo-2002
Mensajes: 449
Antigüedad: 22 años, 9 meses Puntos: 0 | |
Pues merced a la intervencion de un conocido la funcion la resolvi asi:
function posicion( objeto){
resx=0
resy=0
while (objeto.tagName!="BODY")
{
resx+=objeto.offsetLeft
resy+=objeto.offsetTop
objeto=objeto.offsetParent
}
alert(resx+","resy);
} |