hola....me gustaria saber si hay alguna posibilidad de permitir ver una web si es explorer, y si fuera nestcape., pues mandarla a otra web;
saludos
| |||
Re: web solo para explorer?
Código:
<hr noshade size=1><img src="http://www.gograph.com/Images-8712/ClipArt/cat03.gif" height="50" border=0 align="absmiddle"> <font size="2" face="verdana" color="#000000">bet[/CODE] <html> <head> <title> LLamada a distintas paginas segun navegador </title> <script language="javascript"> css_NN = "net.css"; css_IE = "ie.css"; if(document.layers){ // Netscape reconoce la propiedad layers IE no window.location.href="pagNetscape.html"; } if(document.all){ window.location.href="pagIE.html"; } </script> </head> <body bgcolor="#FFFFFF"> </body> </html> |