Is there a website generator that can search for a given URL and output the urls where the images are missing their ALT tags?
+2
A:
Yes - use the w3c markup validator. It will output an error for <img>
tags that do not have the required alt
attribute.
Note that this will only happen for doctypes which require the alt attribute. I believe that, at minimum, all XHTML doctypes require it, so if your page does not already have that doctype, you might consider adding it temporarily to use the validator.
Triptych
2010-02-01 13:03:45
This won't check for empty `alt` tags only missing ones. As an empty `alt` tag is a valid tag.
Jonny Haynes
2010-02-01 13:39:08