Here's a useful script for checking how fast a web page loads in your browser. The pop-up
alert box you saw when this page loaded shows you how this works. Insert the following code into the "Beginning of Body" for the page you wish to troubleshoot: <script><!--
x = new Date() function cal() { y = new Date() diff = y.getTime() - x.getTime() alert("It took " + diff/1000 + " seconds to load this page") }
//--></script> |
Insert this script into the "Inside Body Tag" field of the "Layout HTML" window: ... That's it. |