var titleheight=30;
$(document).ready(function() {
var ctrl = document.getElementById("iframeid");
ctrl.height = document.body.clientHeight - titleheight;
ctrl.width = document.body.clientWidth;
});
Learn and share.
var titleheight=30;
$(document).ready(function() {
var ctrl = document.getElementById("iframeid");
ctrl.height = document.body.clientHeight - titleheight;
ctrl.width = document.body.clientWidth;
});