I am loading an aspx web page in an iframe. The content in the Iframe can be of more height than the iframe\'s height. The iframe should not have scroll bars.
I have
Other answers were not working for me so i did some changes. Hope this will help
$('#iframe').on("load", function() { var iframe = $(window.top.document).find("#iframe"); iframe.height(iframe[0].ownerDocument.body.scrollHeight+'px' ); });