Skip to content

Instantly share code, notes, and snippets.

@obfusk
Last active April 4, 2021 18:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save obfusk/dba6447e4e28277c2791d86463283385 to your computer and use it in GitHub Desktop.
Save obfusk/dba6447e4e28277c2791d86463283385 to your computer and use it in GitHub Desktop.
<img> w/ data-src -> src
[...document.getElementsByTagName("img")].forEach(x => { if (x.dataset.src) x.src = x.dataset.src })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment