Ver Mensaje Individual
  #4 (permalink)  
Antiguo 31/12/2009, 00:01
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 5 meses
Puntos: 834
Respuesta: Porque esto no anda en firefox??

Para acceder al document de un iframe tenés que usar algo como esto:
Código PHP:
var docIfr=document.getElementById('iddeliframe').contentDocument || document.getElementById('iddeliframe').contentWindow.document
Luego, ya teniendo acceso al document del iframe ya podés usar innerHTML:
Código PHP:
docIfr.body.innerHTML='lo que sea'
Un ejemplo:
Código PHP:
<!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 http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<
title>Documento sin t&iacute;tulo</title>
<
script>
onload=function(){
    var 
docIfr=document.getElementById('pp').contentDocument || document.getElementById('pp').contentWindow.document;
    
docIfr.body.innerHTML='<img src="http://static.forosdelweb.com/fdwtheme/isotipocervecero.jpg" />';
}
</script>
</head>

<body>
<iframe id="pp" width="500" height="200" />
</body>
</html>