diff options
author | Brett Zamir <brettz9@yahoo.com> | 2014-06-10 11:11:04 +0800 |
---|---|---|
committer | Brett Zamir <brettz9@yahoo.com> | 2014-06-10 11:11:04 +0800 |
commit | 200a972d9ca2378656894ee68f6d5fdc5fd1fc58 (patch) | |
tree | 7af167741a37f4be5425e61117c3813b4c0c3e0c | |
parent | 5a57a89e08c2ade058e36c0e4919d6d1cb6e8167 (diff) | |
download | multiple-select-200a972d9ca2378656894ee68f6d5fdc5fd1fc58.zip multiple-select-200a972d9ca2378656894ee68f6d5fdc5fd1fc58.tar.gz multiple-select-200a972d9ca2378656894ee68f6d5fdc5fd1fc58.tar.bz2 |
Is convenient if the filter immediately gets focus
-rw-r--r-- | jquery.multiple.select.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/jquery.multiple.select.js b/jquery.multiple.select.js index 05a3cf8..bb02779 100644 --- a/jquery.multiple.select.js +++ b/jquery.multiple.select.js @@ -241,6 +241,7 @@ } if (this.options.filter) { this.$searchInput.val(''); + this.$searchInput.focus(); this.filter(); } this.options.onOpen(); |