Ver Mensaje Individual
  #5 (permalink)  
Antiguo 04/01/2008, 01:35
Avatar de seoista
seoista
 
Fecha de Ingreso: septiembre-2003
Ubicación: Pues leyéndote
Mensajes: 1.076
Antigüedad: 21 años, 6 meses
Puntos: 59
Re: Hacer links a dos pagina a la vez

Hola ider68.P
Por casualidad ¿es esto lo que quieres?.
Cita:
<html>
<head>

<script language="JavaScript">
var URL = "http://";

function abre2(){
web = "www.google.com";
window.open(URL+web, '_blank', '');
setTimeout ("abre3()", 1000)
}

function abre(){
web = "www.yahoo.com";
window.open(URL+web, '_blank', '');
setTimeout ("abre2()", 1000)
}
</script>

</head>

<body>

<a href="javascript:abre()">Abrir 2 páginas</a>

</body>
</html>
Si es que te he entendido bien.

Saludos