Home
Developer Blog
Ajax effects
CSS examples
Freelance jobs
Hot IT Jobs
Hot scripts
Code samples
Web hosting directory
Lotus Notes FAQ
See the new scripts recently added to Dynamic Drive.
Click here
.
Original, practical
CSS codes and examples
such as CSS menus for your site.
Search code samples
Keyword
All Categories
ASP
CSS
Dhtml
Html
Javascript
PHP
Code Samples
ASP
CSS
Dhtml
Html
Javascript
PHP
LOGIN HERE
Username
Password
Signup Now
Forgot Password
Verify Signup
Javascript >> Images
how can I get the loading time of a Image ?
Visitor Ratings (0) :
Description
You can roughly measure the time for loading an image in the following way:
Code
Select All
<script> var start, end; var img = new Image(); img.onload = function (evt) { end = new Date(); alert(((end.getTime() - start.getTime()) / 1000) + \' seconds.\'); }; start = new Date(); img.src = \'logo2.gif\'; </script>
Rate this Resource
0
1
2
3
4
5
6
7
8
9
10