I am trying to set iframe height onload , here is example
It works only when the site has loaded already but I need it to be set before it loads.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The only way you can set the height before the page loads is to do it from your server side script or in the straight HTML/CSS. If you use JavaScript, it will require some of the page to be loaded before it will run. You can’t calculate the height in JavaScript until the page is actually loaded otherwise it will be less than what you expect.