How can I find out how long my site takes to load?

I just did maybe 40 seconds of googling and found this piece of javascript that tells you how fast your page has loaded (if that’s something your looking for).


<script language="javascript">
<!-- 

var from_time = new Date();
from_time = from_time.getTime();

function  show_loading_time() {
  var to_time = new Date();
  to_time = to_time.getTime();
  var secs = (to_time - from_time) / 1000;
  document.f.t.value = secs + " seconds";
}

// -->
</script>


<body onLoad="show_loading_time();">
<form name="f" onsubmit="0">
  Page Loading Time: <input size="15" name="t" value="Plz Wait" />
</form>

Here’s the link to the website --> http://www.a1javascripts.com/time_related/pageloadingtime/pageloadingtime.html

:bounce: