Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q1707 How can I completely hide a frame in all browsers?

You are here: irt.org | FAQ | JavaScript | Frame | Q1707 [ previous next ]

The problem is that on some browsers (namely Opera a frame size specified as * does not work correctly, Instead you need to specifiy 0, but again this fails on other browsers. However, Jan Ehrhardt, found that the following seems to work:

<frameset cols="100%,0/*">
<frame src="about:blank">
<frame src="hidden.htm">
</frameset>

Feedback on 'Q1707 How can I completely hide a frame in all browsers?'

©2018 Martin Webb