If anyone here is having a problem with disabling scrollbars on the iframe
, it could be because the iframe's content has scrollbars on elements below the html
element!
Some layouts set html
and body
to 100% height, and use a #wrapper
div with overflow: auto;
(or scroll
), thereby moving the scrolling to the #wrapper
element.
In such a case, nothing you do will prevent the scrollbars from showing up except editing the other page's content.