View Single Post
Join Date: Dec 2008
Posts: 2
Reputation: fizzix is an unknown quantity at this point 
Solved Threads: 0
fizzix fizzix is offline Offline
Newbie Poster

Re: iFrame resize - sort of repeat issue

 
0
  #2
Dec 5th, 2008
What you can do is have a javascript onload on the body of the forum pages. Use something like this:

  1. function calledOnLoad() {
  2. window.top.getElementById('myiframe').style.height = document.scrollHeight;
  3. }

I didn't test it and some of the properties might be different, but that should give you an idea. Ask me if you have any questions.
Reply With Quote