Ver Mensaje Individual
  #5 (permalink)  
Antiguo 31/08/2010, 20:10
Avatar de deirdre
deirdre
 
Fecha de Ingreso: mayo-2009
Mensajes: 690
Antigüedad: 15 años
Puntos: 45
Respuesta: enlace con 2 iframe .. posible !??

Hola juancondarts

No sé de cuál hilo vienes, pero en este no estabas hasta ahora...

No entiendo muy bien lo que preguntas. Para entenderte sería aconsejable que pusieras un código completo para hacer pruebas y poder darte una orientación.

De todas formas he intentado comprender tu pregunta y te dejo esta adaptación del código anterior a los elementos que mencionas en tu pregunta. Mira si esto soluciona la cuestión:

Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Un click y carga dos iframes</title>
<style type="text/css">
#general {
	width: 100%;
	height: auto;
}
#lateral {
	width: 200px;
	height: 300px;
	border: 1px solid #444;
	float: left;
}
#contenido {
	width: 700px;
	height: 300px;
	border: 1px solid #444;
	float: left;
}
</style>
</head>

<body>

<div id="general">
	<iframe id="lateral" name="lateral" frameborder="0"></iframe>
	<iframe id="contenido" name="contenido" frameborder="0"></iframe>
	<div style="clear: both"></div>
	<a href="lateral.html" target="lateral" onclick="top.contenido.location='contenido_inicial .php';">Carga simultánea</a>
</div>

</body>

</html> 
Si no lo puedes adaptar a tu diseño...por aquí estaremos.

Saludos