javascript - how to find time taken to load a page -
Time can be taken to load an existing page.
Can we find that how much CPU usage of memory to load that page?
If you are looking for JavaScript solutions, when you use the following script, You can:
& lt; Script type = "text / javascript" & gt; (Function () {var startTime = new date (.); Window.setTimeout (function () {var endime = new date (.) GetTime (); alert ("page took" + (end time - start time) + "MS to load");}, 0);}) (); & Lt; / Script & gt;
Comments
Post a Comment