Click to See Complete Forum and Search --> : Listener help


dfrog432
09-30-2005, 01:48 PM
I need to find a way to track how long it takes for a page to be retrieved.
I also am not sure I am asking the right question.
I can do a trace route and see a priority packet sent.
I need to find how long it truly takes for a page to be received.
Any help would be greatly appreciated. :confused:

Lerura
09-30-2005, 04:08 PM
put this in top of your head
<script><!--
Start=new Date();

function ShowTime(){
Stop=new Date();
Time=Stop-Start;
location.href="#"+Time;
}
// --></script>
then use <body onLoad="ShowTime">
the time will then show up after the page's name in the address bar.
This time will be in milliseconds

dfrog432
10-04-2005, 10:59 AM
You were a great help. :D