Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/09/2008, 14:54
abigor66
 
Fecha de Ingreso: mayo-2008
Mensajes: 489
Antigüedad: 16 años, 7 meses
Puntos: 8
Respuesta: Como cargar un iframe al final?

Gracias EPROM, funciona bien.

Si no es mucha molestia. sabrias de donde puedo conseguir ua ayuda para montar una imagen de loading mientras aparce el contenido del iframe?

por ultimo, si tengo dos ifrfame que me interesa que carguen al ultimo, debo de duplicar el contenido de la funcion?

Código HTML:
<script>
function cargaIframe() {
var ifr = document.getElementById('frm');
ifr.location.href = "URL_DEL_IFRAME";
ifr.location.reload();

var ifr2 = document.getElementById('frm2');
ifr2.location.href = "URL_DEL_IFRAME2";
ifr2.location.reload();
}
</script> 
Gracias por tu ayuda.