andrew4582

began_loading

Aug 27th, 2010
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.47 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>...</title>
  4. <script type="text/javascript">
  5. <!--
  6. var began_loading = (new Date()).getTime();
  7.  
  8. function done_loading() {
  9. (new Image()).src = '/timer.gif?u=' + self.location + '&t=' +
  10.  (((new Date()).getTime() - began_loading) / 1000);
  11. }
  12. // -->
  13. </script>
  14. <!--
  15. Reference any external javascript or stylesheets after the above block.
  16. // -->
  17. </head>
  18. <body onload="done_loading()">
  19. <!--
  20. Put your normal page content here.
  21. // -->
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment