Last active
May 16, 2018 05:59
-
-
Save hideya/8996e0f3f197203e114e8c3d9c2273f5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.addEventListener("load", function() { | |
var perfData = window.performance.timing; | |
var renderTime = perfData.domComplete - perfData.domLoading; | |
console.log(renderTime); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment