Skip to content

Instantly share code, notes, and snippets.

@VehpuS
Created January 9, 2023 14:56
Show Gist options
  • Save VehpuS/f891d29a0535b94d46fd615b182fd4da to your computer and use it in GitHub Desktop.
Save VehpuS/f891d29a0535b94d46fd615b182fd4da to your computer and use it in GitHub Desktop.
How to save all <img> elements from a website
Array.from(document.querySelectorAll("img")).forEach((img) => {
const save = document.createElement('a');
save.href = img.src;
save.target = '_blank';
save.click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment