Skip to content

Instantly share code, notes, and snippets.

@cscuderi
Last active May 4, 2018 14:17
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 cscuderi/37ab0813c5ea6993dc1f4072384bccae to your computer and use it in GitHub Desktop.
Save cscuderi/37ab0813c5ea6993dc1f4072384bccae to your computer and use it in GitHub Desktop.
// Really quick way to dump <img> tags and alt text into the console
// Useful for checking a11y
let imgs = document.getElementsByTagName('img');
for(var i = 0; i < imgs.length; i++) {
console.log('--------------------------------\n', imgs[i], '\nAlt text: '+imgs[i].getAttribute('alt')+'\n');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment