levi
levi

Reputation: 3521

Find Images in the Website Which are used Never

How can I detect image that is never used in the website, to improve loading speed of the whole content?.. Thanks in advance...

Upvotes: 0

Views: 60

Answers (1)

Adam
Adam

Reputation: 3665

If an image is never used or referenced in the html then it won't be downloaded by the browser.

Even if they are out on your hosting, they will just be sitting there like storage, and not have an effect on speed of page times.

Here is a good reference for loading time optimization.

http://sixrevisions.com/web-development/site-speed-performance/

  1. Defer Loading Content When Possible
  2. Use External JS and CSS Files
  3. Use Caching Systems
  4. Avoid Resizing Images in HTML
  5. Stop Using Images to Display Text
  6. Optimize Image Sizes by Using the Correct File Format
  7. Optimize the Way You Write Code
  8. Load JavaScript at the End of Your Document
  9. Use a Content Delivery Network (CDN)
  10. Optimize Web Caching

Upvotes: 1

Related Questions