diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index 9f655fbe62..7e194fd72a 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -51,6 +51,8 @@ $.widget( "ui.selectmenu", { this._drawButton(); this._bind( this.button, this._buttonEvents ); + this._hoverable( this.button ); + this._focusable( this.button ); this._drawMenu(); @@ -77,13 +79,13 @@ $.widget( "ui.selectmenu", { 'aria-autocomplete': 'list', 'aria-owns': this.ids.menu, 'aria-haspopup': true - }); - + }); + this.button.prepend( $( '' ) ); - + this.buttonText = $( '', { 'class': 'ui-selectmenu-text' , - html: this.element.find( "option:selected" ).text() || ' ' + html: this.element.find( "option:selected" ).text() || ' ' }) .appendTo( this.button );