I know how to do it in Explorer, but how do you resize an iframe in Firefox? I don't care WHAT size I resize it to right now, just ANY size aside from the default or the one originally specified. Here's what I've tried:
Neither one has any effect.
(Note that I used window.frames instead of document.frames. Firefox doesn't like the latter.)
Tracy Dryden
Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard.![[dragon] [dragon] [dragon]](/data/assets/smilies/dragon.gif)
Code:
window.frames['theFrame'].height = 400;
// and //
document.getElementById('theFrame').style.height = 400;
(Note that I used window.frames instead of document.frames. Firefox doesn't like the latter.)
Tracy Dryden
Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard.
![[dragon] [dragon] [dragon]](/data/assets/smilies/dragon.gif)