Tricky Tricks ›› Programming Tricks ›› Javascript Tricks ›› This Page Is Loading

This Page Is Loading

Javascript Tricks

This page is loading:

Here's a nice little script that tells surfers that your gigantic page is loading so they don't back out and leave.

 ><SCRIPT>
 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>
 

Partners