28/11/2007, 01:48
|
| | | Fecha de Ingreso: septiembre-2003 Ubicación: Pues leyéndote
Mensajes: 1.076
Antigüedad: 21 años, 5 meses Puntos: 59 | |
Re: 2 link en uno Cita: <html>
<head>
<script language="JavaScript">
var URL = "http://";
function abre2(){
web = "www.forosdelweb.com";
window.open(URL+web, '_blank', '');
setTimeout ("abre3()", 1000)
}
function abre(){
web = "www.google.es";
window.open(URL+web, '_blank', '');
setTimeout ("abre2()", 1000)
}
</script>
</head>
<body>
<a href="javascript:abre()">Abrete 2 paginas a la vez</a>
</body>
</html> O así: Espero que sea esto lo que quieres.
Saludos |