Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1.  
  2. if (!!!window.performance) {
  3. console.log("Plese use latest browser");
  4. }
  5.  
  6. var performanceTiming = performance.timing;
  7. var contentDownload = 0;
  8.  
  9. contentDownload = performanceTiming.responseEnd - performanceTiming.responseStart;
  10.  
  11. console.log("Content Download: ", contentDownload);
  12. } ())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement