Jim wrote:
How can one put an accesskey on a Select (Drop down box) in a form using
XHTML 1.0? It won₼t validate as follows:
<select accesskey="r" tabindex="3" name="state" size="1">
<label accesskey="r">State:
<select tabindex="3" name="state">
<option>...</option>
</select>
</label>
Or, if your concerned about the label working properly in IE, then you
have to reference the control with the id, using the for attribute.
<label accesskey="r" for="state">State:</label>
<select tabindex="3" id="state" name="state">
<option>...</option>
</select>
--
Lachlan Hunt
http://lachy.id.au/ http://GetFirefox.com/ Rediscover the Web
http://SpreadFirefox.com/ Igniting the Web