devdaily home | apple | java | perl | unix | directory | blog

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

<html> 
<head> 
<style type="text/css"> 
    #waitpage { position: absolute; } 
    #mainpage { position: absolute; visibility: hidden; } 
</style> 

<script language=\"JavaScript\"> 
function init () 
{ 
    if (document.layers) 
    { 
      document.waitpage.visibility = 'hide'; 
      document.mainpage.visibility = 'show'; 
    } 
    else 
    { 
      if (document.all) 
      { 
        document.all.waitpage.style.visibility = 'hidden'; 
        document.all.mainpage.style.visibility = 'visible'; 
      } 
    } 
} 
</script> 
</head> 

<body onLoad="init();"> 

  <DIV ID="waitpage"> 

  <!-- waiting message is here: --> 
  <center> Wait please ...  

  </DIV> 

  <!-- very very long calculation is here --> 
  <DIV ID="mainpage"> 
    <script language="JavaScript"> 
         location.href='http://localhost:8080/JavaLibrary/index.html'; 
    </script> 
  </DIV> 

</body> 
</html> 




Copyright 1998-2008 Alvin Alexander
All Rights Reserved.
 
devdaily.com is based in louisville, kentucky, and this web site is hosted by godaddy.com