Skip to content

Instantly share code, notes, and snippets.

@jjmss
Created March 2, 2022 12:58
Show Gist options
  • Save jjmss/8f57c0068af57de0d251af2dc848bf2e to your computer and use it in GitHub Desktop.
Save jjmss/8f57c0068af57de0d251af2dc848bf2e to your computer and use it in GitHub Desktop.
Bookmark to check what images that are missing alt-tags (wp)
javascript:(function(){var image_log = ''; var images = document.querySelectorAll("img[alt='']");for(let i = 0; i < images.length ; i++) {images[i].style.background = "#f75959";images[i].style.padding = "20px";image_log += (images[i].src + '\n')}console.log(image_log)})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment