Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/11/2009, 07:53
quimfv
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Sabadell
Mensajes: 4.897
Antigüedad: 16 años, 8 meses
Puntos: 574
Respuesta: Acceso a ventanas padre desde iFrame en Firefox

parent.document.getElementById('Guest').innerHTML

Si tenemos


marco.html
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<span id="eltexto">Que texto</span>
<iframe width="200" height="100" src="ppp.html"></iframe>
</body>
</html> 
y

ppp.html
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<script language="JavaScript" type="text/JavaScript">
function muestra(){
document.getElementById('mostrar').innerHTML=parent.document.getElementById('eltexto').innerHTML;
}
</script>
<body onLoad="muestra()">
<span id="mostrar"></span>
</body>
</html> 
funciona tanto en Firefox como en IE

Quim

Última edición por quimfv; 11/11/2009 a las 08:01