Is there a way to force the browser to display a page only after all of the page's contents are completely loaded (such as images, scripts, css, etc)?
|
|
The easiest thing to do is putting a
(Note that Add the DIV like so (directly after the opening
show the DIV directly after :
and hide it
or using jQuery
this approach has the advantage that it will also work for clients who have JavaScript turned off. It shouldn't cause any flickering or other side-effects, but not having tested it, I can't entirely guarantee it for every browser out there. |
|||||||||||||
|
|
put an overlay on the page
and then delete that element in a
Of course you should use your javascript library (jquery,prototype..) specific onload handler if you are using a library. |
|||
|
|
|
you can also go for this.... this will only show the HTML section once javascript has loaded.
|
|||
|
|
|
try using javascript for this! Seems like its the best and easiest way to do this. You'll get inbuilt funcn to execute a html code only after HTML page loads completely. or else you may use state based programming where an event occurs at a particular state of the browser.. |
|||
|
|