Skip to content

Instantly share code, notes, and snippets.

@imedadel
Created September 21, 2019 12:17
Show Gist options
  • Save imedadel/ef5fc66e41b3ab2a72acd3654da42117 to your computer and use it in GitHub Desktop.
Save imedadel/ef5fc66e41b3ab2a72acd3654da42117 to your computer and use it in GitHub Desktop.
// Using class name
[...document.querySelectorAll('img.FFVAD')]
// Using alt text
[...document.querySelectorAll('img')].filter(img => img.alt.includes('Image may contain') || img.alt.includes.('No photo description available.'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment