
11/09/2008, 14:39
|
 | | | Fecha de Ingreso: abril-2005
Mensajes: 51
Antigüedad: 19 años, 10 meses Puntos: 3 | |
Respuesta: Como cargar un iframe al final? Yo haría algo así:
Código:
<html>
<script>
function cargaIframe() {
var ifr = document.getElementById('frm');
ifr.location.href = "URL_DEL_IFRAME";
ifr.location.reload();
}
</script>
<body onload="cargaIframe()">
..
..
<iframe src="" name="frm" id="frm" width="659px" height="300px" scrolling="yes" frameborder="0" ></iframe>
..
Salu2 |