Código HTML:
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript"> // Detecta navegador. function checkIt(string){ var detect = navigator.userAgent.toLowerCase(); place = detect.indexOf(string) + 1; thestring = string; return place; } // Adaptar la altura del iframe a su contenido. function resize() { document.getElementById("ifrm").height = "0"; if (checkIt('opera')) { alert("opera") document.getElementById("ifrm").height = document.getElementById("ifrm").document.body.scrollHeight; } document.getElementById("ifrm").height = document.getElementById("ifrm").contentWindow.document.body.scrollHeight; } //--> </SCRIPT>
document.getElementById("ifrm").height = document.getElementById("ifrm").contentWindow.docu ment.body.scrollHeight;
, les comento que al hacer el link le pongo como destino el iframe que se llama iframe este es el codigo del iframe
Código HTML:
<iframe id="ifrm" name="iframe" src="./documents/home.htm" frameborder="0" scrolling="no" width="570" marginheight="0" marginwidth="0" onLoad="resize(); window.scrollTo(0,0)"></iframe>
si alguien sabe como solucionar esto le estare muy agradecido
saludos