Skip to content

Instantly share code, notes, and snippets.

@mgroat
Created February 13, 2017 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgroat/0b9f357475e9187a10399169c48015a3 to your computer and use it in GitHub Desktop.
Save mgroat/0b9f357475e9187a10399169c48015a3 to your computer and use it in GitHub Desktop.
Bookmarklet to show you page load time
javascript:var t = performance.timing;alert("From request start to response end: " + (t.responseEnd - t.requestStart)/1000+"s\nFrom Navigation Start to Load End: "+ (t.loadEventEnd - t.navigationStart)/1000 +"s");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment