Implement IFRAME adaptive height using jquery

Source: Internet
Author: User
This is a simple method, and you do not need to write anything to determine the browser height and width.
You can choose one of the following two methods. One is stored on the same page as iframe, and the other is stored on the test.html page.
Be sure not to make the mistake.

IFRAMECode,Be sure to write the ID

<IFRAME src = "test.html" id = "Main" width = "700" Height = "300" frameborder = "0" scrolling = "Auto"> </iframe>

Jquery code 1:

// Note: the following code is stored in test.html for calling.
Vertex (w.w.parent.doc ument). Find ("# Main"). Load (function (){
VaR main = warn (window.parent.doc ument). Find ("# Main ");
VaR thisheight = $ (document). Height () + 30;
Main. Height (thisheight );
});

Jquery Code 2:

// Note: the following code is put on the same page as IFRAME for calling.
$ ("# Main"). Load (function (){
VaR mainheight = $ (this). Contents (). Find ("body"). Height () + 30;
$ (This). Height (mainheight );
});

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.