To elaborate, this sort of arrangement works well:
HTML Code:
<!--[if IE]>
<script type="text/javascript">
document.write('<iframe id="ie" name="ed" src="text.htm" width="250" height="200" scrolling="yes" frameborder="1">')
</script>
<![endif]-->
<script type="text/javascript">
if (!document.getElementById('ie'))
document.write('<iframe name="ed" src="text.htm" width="250" height="200" scrolling="auto" frameborder="1">')
</script>
</iframe><br>
<a href="text2.htm" target="ed">ed</a>
With the caveat that on content pages to be loaded into the iframe that you do not want even the empty vertical scrollbar to appear in IE, use this style in the head:
Code:
<style type="text/css">
html, body {
overflow:hidden;
}
</style>
Bookmarks