![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
01/04/2009, 06:56
|
| | Fecha de Ingreso: septiembre-2005
Mensajes: 522
Antigüedad: 19 años, 5 meses Puntos: 0 | |
Respuesta: Iframe - getElementById - en Mozilla Si pero en Internet Explorer me funciona. Estoy intentando utilizar lo siguiente pero tampoco funciona con Mozilla:
.....
.....
if(document.getElementById) valor=document.getElementById('id');
else if(document.all) valor=document.all['id'];
else if(document.layers) valor=document.layers['id'];
valor.src="pagina_1.php";
....
.... |