96.- Quitar recuadro punteado de enlace P: ¿Como puedo quitar el recuadro de puntos de un enlace activo?
R: Con este código.
Creditos: unKnown, con modificación de Caricatos para que funcione también en Netscape.
Código PHP:
<html>
<head>
<script language="JavaScript">
function prende() {
anclas=document.getElementsByTagName("a").length;
for (i=0;i<anclas;i++)
document.getElementsByTagName("a").item(i).onfocus=new Function("if(this.blur)this.blur()")
}
</script>
</head>
<body onLoad="prende()">
<a href="#">Enlace1</a> <a href="#">Enlace2</a> <a href="#">Enlace3</a>
</body>
</html>