Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/08/2008, 14:47
Avatar de poison_mayer
poison_mayer
 
Fecha de Ingreso: julio-2008
Mensajes: 69
Antigüedad: 15 años, 9 meses
Puntos: 2
Respuesta: Como vinculo 2 frame con un href

<html>
<head>
<script language="javascript">
function abrirvinculos(){
window.open('http://poison01.com', '1');
window.open('http://poison02.com', '2');
}
</script>

</head>
<body>
<div style="background-color:#FF0000">
<div style="background-color:#123456; padding-left:25px"><a href="#" onClick="abrirvinculos();"><h1>Abrir v&iacute;nculo doble</h1></a>
</div>
<div align="center">
<iframe width="350" height="100%" frameborder="0" scrolling="auto" style="background-color:#000000" name="1"></iframe>
<iframe width="350" height="100%" frameborder="0" scrolling="auto" style="background-color:#000000" name="2"></iframe>
</div>
<div style="background-color:yellow">footer</div>
</div>

</body>
</html>