- From: Rich Morin <rdm@cfcl.com>
- Date: Fri, 17 Feb 2017 16:01:59 -0800
- To: WAI Interest Group <w3c-wai-ig@w3.org>
- Cc: Amanda Lacy <lacy925@gmail.com>
I have some pulldown menus that don't open for Amanda when she hits the
"space" bar in NVDA. Instead, she has to use alt-down_arrow. I'd like
to know if there is some ARIA goodness I should be incuding in my HTML.
FWIW, I'm using jQuery to respond to events, reload options, etc. See
below for a code extract.
-r
<script>
$(function() {
var h0 = { 'pm_list': [ "epub" ] };
$('#axap_options_menu').load('/Options', h0);
$('#axap_options_menu').change(
function(event) {
/* Get selection info for pulldown menu. */
var pm_val = $(event.target).val();
var pm_var = $('option:selected', this).attr('id');
...
<div id='axap_options_pane'>
<label for='axap_options_menu'><b>Options:</b></label>
<select id='axap_options_menu' name='axap_options'></select>
</div>
--
http://www.cfcl.com/rdm Rich Morin rdm@cfcl.com
http://www.cfcl.com/rdm/resume San Bruno, CA, USA +1 650-873-7841
Software system design, development, and documentation
Received on Saturday, 18 February 2017 00:02:34 UTC