- From: Rich Morin <rdm@cfcl.com>
- Date: Fri, 17 Feb 2017 14:28:37 -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 Friday, 17 February 2017 22:29:13 UTC