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

Q74 Is it possible to preload a frame without showing it?

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

If you use something like the following for the frameset definition, i.e. a hidden frameB, you can preload what you like in frameB.

<frameset frameborder="0" framespacing="0" rows="100%,*">
<frame scrolling="no" frameborder="0" marginheight="0"
    marginwidth="0" name="frameA" noresize src="frameA.html">
<frame scrolling="no" frameborder="0" marginheight="0"
    marginwidth="0" name="frameB" noresize src="frameB.html">
</frameset>

©2018 Martin Webb