.load() time counter

.load() time counter

by MrTest

JavaScript

// Time Measure
var startDate = new Date();
var startMilliseconds = startDate.getTime();


var Count = new Date().getTime() - startMilliseconds;
// Log The Time Measure
console.log(ActiveTab + ' loaded in ' + Count);