ok... listo.... ahora si...
(creo)
aqui está el link ONLINE!!
VER EJEMPLO ONLINE!! default.html Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>DEFAULT by SARUMAN</title>
</head>
<frameset rows="*,401" cols="*" framespacing="0" frameborder="no" border="0">
<frame src="frame1.html" name="frame1" id="frame1" scrolling="no" noresize="noresize"/>
<frame src="frame2.html" name="frame2" scrolling="No" noresize="noresize" id="frame2" />
</frameset>
<noframes><body>
</body>
</noframes>
</html>
frame1.html Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<script language="javascript">
function abrete_ahora(esto) {
parent.document.getElementById("frame2").src = esto;
}
</script>
<body bgcolor="#99CCCC">
<iframe id="mi_iframe" scrolling="no" src="iframe.html" width="100%" height="150" frameborder="0"></iframe>
</body>
</html>
frame2.html Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>FRAME2</title>
</head>
<body bgcolor="#FFFF99">
</body>
</html>
iframe.html Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>IFRAME</title>
</head>
<script language="javascript">
function abrir_pagina(esto) {
parent.abrete_ahora(esto);
}
</script>
<body style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; background-color:#000000; color:#FFFFFF;">
<center>
<strong>HOLA, SOY EL IFRAME... ESTOY DENTRO DEL FRAME1 Y QUIERO ABRIR UN LINK EN MI TIO EL FRAME2. :-)</strong>
<br><br><br><br>
<a href="javascript:void(0);" onClick="abrir_pagina('http://www.forosdelweb.com')" style="color:#FFCC00;">PRESIONA AQUI!!</a>
</center>
</body>
</html>
revisa y me dices si todo está bien... saludos