Skip to content

Instantly share code, notes, and snippets.

@prasann
Created March 4, 2015 12:50
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 prasann/464cc052df99246bbf94 to your computer and use it in GitHub Desktop.
Save prasann/464cc052df99246bbf94 to your computer and use it in GitHub Desktop.
Page load time in JS
$(document).ready(function () {
if (typeof(console) !== 'undefined' && console.log) {
var now = new Date().getTime();
var page_load_time = now - performance.timing.navigationStart;
console.log("Page loading time: " + page_load_time + ' ms');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment