A simple solution for automatically resize iframe height depending on content.
In page add jQuery library and in your page head part past below script.
In page add jQuery library and in your page head part past below script.
$(function () {
$('#myIframe').load(function () {
this.style.height =
this.contentWindow.document.body.offsetHeight + 'px';
});
});
No comments:
Post a Comment