Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 847 Bytes

1.8.11.md

File metadata and controls

28 lines (22 loc) · 847 Bytes
<script>{ "title": "jQuery UI 1.8.11 Upgrade Guide", "toc": true }</script>

Overview

This guide will assist in upgrading from jQuery UI 1.8.10 to jQuery UI 1.8.11. All changes are listed below, organized by plugin, along with how to upgrade your code to work with jQuery UI 1.8.11.

Autocomplete

Added autoFocus option

(#7032) A new option has been added to automatically focus the first item in the search results. This reduces the number of key presses needed to select an item from the list and makes selecting the first result as easy as tabbing away from the field once the menu is displayed. This option is off by default, to turn it on, simply set the autoFocus option to true.

$( "#autocomplete" ).autocomplete({
	source: [ "hello", "world" ],
	autoFocus: true
});