ARe you kidding me, like i didnt TRY that one. browsers wont allow that to happen its got to be done in javascript
Main Topics
Browse All TopicsHow can i make an iframe go 100% height? for FF, ie and safira?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here's how I did it. These snippets are authored by someone else...I wish I could remember to give proper credit, but what can ya do?
In the parent:
<script>
function getDocHeight(doc) {
var docHt = 0, sh, oh;
if (doc.height) docHt = doc.height;
else if (doc.body) {
if (doc.body.scrollHeight) docHt = sh = doc.body.scrollHeight;
if (doc.body.offsetHeight) docHt = oh = doc.body.offsetHeight;
if (sh && oh) docHt = Math.max(sh, oh);
}
return docHt;
}
function setIframeHeight() {
var iframeWin = window.frames['myiframecon
var iframeEl = document.getElementById('m
if ( iframeEl && iframeWin ) {
// helps resize (for some) if new doc shorter than previous
iframeEl.style.height = "auto";
var docHt = getDocHeight(iframeWin.doc
// need to add to height to be sure it will all show
if (docHt) iframeEl.style.height = docHt + 40 + "px";
}
}
</script>
<iframe name="myiframecontrol" id="myiframecontrol" width="100%" style="border:2px solid #8888cc;">
You must use a frames-enabled browser to view this section.
</iframe>
In the iframe page:
<script>
function goSetHeight() {
if (parent == window) return;
else parent.setIframeHeight();
}
</script>
<body onload="goSetHeight();">
Didnt't mean to insult them, they tried to help with what I gave them.
The other skin is still ugly looking compared to how EE use to look.
I sloved the problem by making the frameset and links not load remote or diffrent domains which in ie makes them popup new pages, please do not refund the points. let them have them. no like points matter anyhow to anyone exepct them.
I'm the one paying 9.99 a month so can't i decide?
Business Accounts
Answer for Membership
by: thirdPosted on 2007-02-14 at 22:07:22ID: 18538218
like,
" width="100%" height="100%" scrolling="no" frameborder="0"></iframe>
<html>
<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
<iframe name="" src="http://www.google.com
</body>
</html>