diff options
Diffstat (limited to 'ui/jquery.ui.selectmenu.js')
-rw-r--r-- | ui/jquery.ui.selectmenu.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index d878ec5c2..5f772dfef 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -308,7 +308,12 @@ $.widget("ui.selectmenu", { href : '#nogo', tabindex : -1, role : 'option', - 'aria-selected' : false + 'aria-selected' : false, + focus: function() { + + // bubble the focus event + $(this).parent().focus(); + } }; if ( selectOptionData[ i ].disabled ) { thisAAttr[ 'aria-disabled' ] = selectOptionData[ i ].disabled; |