tags:

views:

25

answers:

2

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: 

Why don't you use W3C Validator?

Sarfraz
+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
This won't check for empty `alt` tags only missing ones. As an empty `alt` tag is a valid tag.
Jonny Haynes