jquery Adaptive height for the IFRAME

Source: Internet
Author: User

Super simple method, also need not write what Judge browser height, width what.
Here are two ways to do it. One is placed on the same page as the IFRAME, and one is placed on the test.html page.
Be careful not to put the wrong place.


iframe Code, Note to write the ID

  
 
  1. < iframe src ="test.html" ID ="main" width ="The " height ="+" frameborder ="0" scrolling ="Auto" ></iframe>

jquery Code 1:

  
 
  1. // Note: The following code is placed in the test.html call
  2. $ ( window . parent document find ( "#main" load ( function () {
  3. var Main = $ (window. Parent . Document ). Find ("#main");
  4. var Thisheight = $ (document). Height ()+ - ;
  5. Main . Height (thisheight);
  6. });

jquery Code 2:

  
 
  1. // Note: The following code is placed on the same page as the IFRAME call
  2. $ ("#main"). Load (function() {
  3. var = $ ( this ). contents (). find ( "body" height () + 30
  4. $ (this). Height (mainheight);
  5. });

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.