Hi,

We are using htdig for a web site that must be 508 compliant.
In the mail archive, I found my question asked, but did not find
an answer. (There was one answer from Tsjebbe de Vries but
he misunderstood the question).

http://sourceforge.net/mailarchive/message.php?msg_id=9533373

If there is an answer in the archive, please point me at it.

If not, then, in the archive, Martin states his question well.
But, I can add an html example for clarity.  Here is an html snippet
generated by htDig:

<input type="hidden" name="exclude" value="">
Match: <select name="method">
<option value="and" selected>All
<option value="or">Any
<option value="boolean">Boolean
</select>

This form is not considered accessible to a blind person.  To be
accessible the select statement must contain an id that ties it to the
label.

<input type="hidden" name="exclude" value="">
<label for="Match">Match: </label>
<select name="method" id="Match">
<option value="and" selected>All
<option value="or">Any
<option value="boolean">Boolean
</select>

This problem can be solved by having htdig generate an id that is
identical to the name attribute.

<select name="method" id="method">....</select>
<select name="format" id="format">
<select name="sort" id="sort">

etc. etc.  Then by looking at the generated html, one can determine the
label to use.  ie:

<label for="method">Match: </label>
<label for="format">Format: </label>
<label for="sort">Sort by: </label>

Any help would be appreciated.
Thanks
Dee

---------------------------------------------
ICBG Global Data Center
P.O. Box 837
325 Court Street
Friday Harbor, WA  98250

800.567.8725
360.378.7292
[EMAIL PROTECTED]


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
ht://Dig general mailing list: <[email protected]>
ht://Dig FAQ: http://htdig.sourceforge.net/FAQ.html
List information (subscribe/unsubscribe, etc.)
https://lists.sourceforge.net/lists/listinfo/htdig-general

Reply via email to