Skip to content

Instantly share code, notes, and snippets.

@sandeep1995
Created June 22, 2022 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sandeep1995/cd7b96aeea7c55d792c8365c893571d5 to your computer and use it in GitHub Desktop.
Save sandeep1995/cd7b96aeea7c55d792c8365c893571d5 to your computer and use it in GitHub Desktop.
// add loading="lazy" for all images
const images = dom.window.document.querySelectorAll('img[src]');
Array.prototype.forEach.call(images, (img) => {
img.setAttribute('loading', 'lazy');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment