|
Page Details >>>
Displays a loading message as the page, including images and sound elements, are loaded in the background. When the page finishes loading the screen is shown, similar to how Macromedia's Flash plugin works.
| Page loading ... Please wait. |
Add the below code to the <body> section of your page:
<script
language="javascript"
type="text/javascript">
function
loadImages()
{
if
(document.getElementById)
{
document.getElementById('hidepage').style.visibility
=
'hidden';
}
}
window.onload
=
loadImages;
</script>
<div
id="hidepage"
style="
background-color: #FFFFCC; layer-background-color: #FFFFCC; width: 100%;">
<table
width=100%><tr><td>Page
loading ... Please wait.</td></tr></table></div>
|
|