I want to show a remote url's content or site in popup using iframe. But i do not want to fix height of iframe. I have already used some code
function resizeIframe(iframe) {
iframe.height = iframe.contentWindow.document.body.scrollHeight + "px";
}
for
and i have tried another code
document.getElementById('iframe1').scrollHeight();
But this is not working. Please suggest