I have the following Iframe.

<iframe id="result" style="width:400px;overflow:-moz-scrollbars-none;overflow:hidden" scrolling="0" frameborder="0"></iframe>

Want to disable the scroll-bars while the url finishes completely loading in the iframe. The above seems to work with Firefox, but not with Safari, Opera, and not sure IE.

I am looking for javascript to disable all scrolling until iframe url has completely loaded.

Thanks in advance!

Well thats simpe enough,

<iframe id="result" style="width:400px;" scrolling="no" frameborder="0" onload="this.scrolling='auto'"></iframe>

untested but should work

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.