
03/11/2005, 22:07
|
 | | | Fecha de Ingreso: febrero-2005
Mensajes: 994
Antigüedad: 20 años, 1 mes Puntos: 9 | |
<html> <head> <style>
.visto{position:absolute;display:inline;color:black;background:green;}
.novisto{display:none} </style> <script> function ver(obj){ obj.getElementsByTagName('span')[0].className='visto'
} function nover(obj){ obj.getElementsByTagName('span')[0].className='novisto'
} </script> <head> <body>
texto <a href="" onmouseover="ver(this)" onmouseout="nover(this)"> <span class="novisto">
contenido de la ayuda </span>
enlace </a>
texto </body> </html> |