Is there anyone who can assist me with this issue? A large webpage is getting cut off by about 70% near the end of the scroll bar.
Here is the code snippet in question:
</div>
<div id="divCustomDataPreview" title="Custom Form Preview" style="background-color: #ffffff; height:580px; !important; display: none;overflow:hidden; " >
<iframe id='ifrCustomDataPreview' style="border: 0px; overflow:hidden !important;" scrolling="yes" width='100%' height='100%' onload='javascript:resizeIframe(this);'></iframe>
</div>
<div id="divFormCreate" title="Convert To Form" style="display: none;background-color:#FFFFFF">
function resizeIframe(obj) {
var BrowserName=BrowserDetecting().split('#')[0];
if(BrowserName == "Chrome" || BrowserName == "Safari")
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
else
obj.style.height=obj.contentWindow.document.documentElement.scrollHeight + 'px';
}