You could use that script on the page in the iframe, on any page really to control its vertical scrollbar, replace it actually. If you have control over the source code of the page, if iframe, this means the page in the iframe.
On a standards compliant page, add this to the script:
Code:
document.documentElement.style.overflowY = 'hidden';
It can go right at the end, right before the closing </script> tag.
Just to be clear, for iframe, the entire script and its markup must be on the page in the iframe. The script part may be made external, for iframe or not iframe pages.
That will give you just the up and down arrow images in supporting browsers if the page in the iframe is also standards compliant. These will appear near the bottom of the iframe, within the iframe.
These arrows could be moved to the top page, but that gets a bit complicated and requires the pages be on the same domain. And not only on the same domain, but also seen by the browser to be on the same domain, which if you don't use all relative paths can get tricky with www. and not www. perhaps appearing in the URLs as taken from the browser's perspective.
Bookmarks