|
|
| Author |
Message |
G-Bomb
Joined: 29 Feb 2004 Posts: 73
|
Posted: Mon Mar 01, 2004 10:10 pm Post subject: "Page is loading" script. (JavaScript) |
|
|
Here's a nice little script that tells surfers that your gigantic page is loading so they don't back out and leave.
| Code: | <SCRIPT LANGUAGE="JavaScript"><!--
if(top.frames.length==0) {
document.write("<B>This Page is Loading ...please wait</B>");
window.clear;
window.location.href="file2.html";
} else {
document.write("<B><BR>Loading Main Menu...</B>");
top.frames[1].location.href="main.html";
}
--></SCRIPT> |
|
|
| Back to top |
|
 |
jalinds
Joined: 02 Mar 2004 Posts: 36
|
Posted: Tue Mar 02, 2004 8:03 am Post subject: |
|
|
That's very very useful code (for me ) Does it need any files to be load or something? I really want to know about that code if I could use it on my site |
|
| Back to top |
|
 |
|