Independent evidence

Compare image requests before and after scrolling

An HTML attribute alone does not prove that lazy loading works. A reliable check shows which files the browser really requested when the page opened and which appeared only as they approached the viewport.

Network shows only the visible image before scrolling and requests the next image after scrolling
The decisive evidence is a change in network requests during scrolling.

Simple browser check

  1. Open the page in a private window and do not scroll.
  2. Open DevTools → Network, enable Disable cache and select Img.
  3. Reload and save the list of images already requested.
  4. Slowly scroll towards the next section containing images.
  5. Confirm that new requests appear shortly before the images become visible.
  6. Save two screenshots: before and after scrolling.

How to assess the result

Signs of correct and incorrect lazy loading
ObservationLevelConclusion
The LCP or first-screen image waits for scrollingCriticalLazy loading is applied to the wrong element
Dozens of invisible images load immediatelyImportantThe initial load is unnecessarily heavy
One or two small images preloadMinorCheck their purpose and position
The first screen is immediate; others load nearbyGoodLazy loading works

Inspect the markup

Select an image below the first screen, open Inspect and locate its element. Native lazy loading normally contains:

<img src="..." loading="lazy" ...>

Older scripts may use data-src, a class and noscript. Always verify Network as well: the attribute alone proves nothing.

Why results can differ

A browser may preload an image placed close to the viewport. Cache, screen width, CMS behaviour, sliders and JavaScript also affect the result. The automatic audit therefore treats low-priority requests as candidates; the final decision follows a manual position check.

The count and price refer to unique candidates on the submitted URL. Repeated use of one file and one shared-template correction should not be charged repeatedly. If confirmed, you can order the lazy-loading setup.