Well one thing, to remove scrollbars, set scrolling="no" in the iframe tag. Ex:
HTML Code:
<iframe scrolling="no" height="300" width="600" src="some.htm"></iframe>
Or, to selectively use scrolling or not, set it to auto, the size and layout of the document will decide the need for either horizontal, vertical or both scrollbars.
You can also set scrolling="yes" or to auto, and then in the body tag of a document being loaded into the iframe use:
HTML Code:
<body overflow="hidden">
No scrollbars for that page when loaded in the iframe.
Now, when you load a word document over the internet, depending upon a user's browser and OS settings, it will usually launch Word. Nothing you can do about that. You can however, using Word, save a word document as HTML. Results vary but, you will get an HTML page that is at least an approximation of the original word document and, if you know how, you can tweak its appearance in a text (recommended) or other editor. That HTML page will load without launching Word.
If a page containing an iframe is loaded, the speed at which documents load into that iframe is little, if any, different from the speed at which they would load into their own window.
I hope some or all of this is helpful.
Bookmarks