09/01/2002, 08:25
|
| | Fecha de Ingreso: febrero-2001
Mensajes: 292
Antigüedad: 23 años, 11 meses Puntos: 0 | |
Re: javascript urgente porfavor Te dejo el código. Espero que te sirva:
<pre>
<html>
<head>
<title> New Document </title>
<script language="javascript">
if (window.screen){
var w = screen.width; // ancho de la pantalla
if(document.layers){ // Netscape reconoce la propiedad layers IE no
if(w < 740){
window.location.href="nets640.htm";
}
if(w >= 740 && w < 835){
window.location.href="nets800.htm";
}
if(w >= 835){
window.location.href="nets1024.htm";
}
}
if(document.all){
if(w < 740){
window.location.href="ie640.htm";
}
if(w >= 740 && w < 835){
window.location.href="ie800.htm";
}
if(w >= 835){
window.location.href="ie1024.htm";
}
}
}
</script>
</head>
<body bgcolor="#FFFFFF">
</body>
</html> </pre>
<hr noshade size=1 color="#000000"><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] |