aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.autocomplete.js
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2011-03-15 05:43:19 -0400
committerRichard Worth <rdworth@gmail.com>2011-03-15 05:43:19 -0400
commit779df6517d4e1bdd7ed3667537adb67c7443d15f (patch)
tree033cb13b8686976557fea5d225f9d29626359963 /ui/jquery.ui.autocomplete.js
parent69ebdf46a596de6e6889f9532fdad6ad841cc765 (diff)
downloadjquery-ui-779df6517d4e1bdd7ed3667537adb67c7443d15f.tar.gz
jquery-ui-779df6517d4e1bdd7ed3667537adb67c7443d15f.zip
Autocomplete: new option autoFocus, default false. Fixed #7032 - Autocomplete: Add option to automatically highlight the first result
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r--ui/jquery.ui.autocomplete.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js
index a497b72fd..204322320 100644
--- a/ui/jquery.ui.autocomplete.js
+++ b/ui/jquery.ui.autocomplete.js
@@ -20,6 +20,7 @@ var requestIndex = 0;
$.widget( "ui.autocomplete", {
options: {
appendTo: "body",
+ autoFocus: false,
delay: 300,
minLength: 1,
position: {
@@ -359,6 +360,10 @@ $.widget( "ui.autocomplete", {
this.menu.deactivate();
this.menu.refresh();
+ if ( this.options.autoFocus ) {
+ this.menu.next( new $.Event("mouseover") );
+ }
+
// size and position menu
ul.show();
this._resizeMenu();