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í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í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