Remove 2 scroll bars with an IFRAME page [go]

Source: Internet
Author: User

The people who use the IFRAME know, (the Great god please drift over ...) The IFRAME on the right is always with a scrollbar, and the page has scroll bars by default, and a page of 2 scroll bars is of course not good, remove the words ... Here is a simple jquery, this is Kaka to write, easy to understand, grey often thanks ...

Structure:

<body>

<div class= "Warp_body" >

<div class= "Warp_header" ></div>

<div class= "Warp_content" >

<div class= "sidebar" ></div>

<div class= "Content" >

<div class= "Content-item" >

<iframe width= "100%" style= "height:668px" frameborder= "0" src= "http://thehlc.cn" ></iframe>

</div>

</div>

</div>

</div>

<script type= "Text/javascript" >adjustifrht ();</script>//Add to Page last

</bocy>

jquery section:

<script type= "Text/javascript" >

function Adjustifht () {

var ht = $ (window). Height (); //Get the overall height of the browser window;

var Topheader = $ (". Warp_header"). Height (); //Get head height, define a variable named Topheader

$ (". Sidebar"). Height (HT);

$ ("#rightFrame"). Height (HT);

$ (". Sidebar"). Height (ht-topheader); //Calculate left Height: window height-head height

$ ("#rightFrame"). Height (ht-topheader); //Calculate Right Height: window height-head height

}

</script>

Style section:

<style type= "Text/css" >

Html{overflow:hidden;} //Hide the scroll bar of the entire page;

</style>

Remove 2 scroll bars with an IFRAME page [go]

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.