Try this version, otherwise show your URL.
Code:
<script type='text/javascript'>
function setIframeHeight( iframeId ) /** IMPORTANT: All framed documents *must* have a DOCTYPE applied **/
{
var ifDoc, ifRef = document.getElementById( iframeId ), tempW, tempH;
try
{
ifDoc = ifRef.contentWindow.document.documentElement;
}
catch( e )
{
try
{
ifDoc = ifRef.contentDocument.documentElement;
}
catch(ee)
{
}
}
if( ifDoc )
{
tempH = ifDoc.scrollHeight;
ifRef.height = 1;
ifRef.height = tempH;
/* For width resize, enable below. */
//tempW = ifDoc.scrollWidth;
//ifRef.width = 1;
//ifRef.width = tempW;
}
}
</script>
Bookmarks