Skip to content

Instantly share code, notes, and snippets.

@ville6000
Created March 24, 2016 13:16
Show Gist options
  • Save ville6000/6f4a0c8a01eaf9caf8bb to your computer and use it in GitHub Desktop.
Save ville6000/6f4a0c8a01eaf9caf8bb to your computer and use it in GitHub Desktop.
Display jQuery UI Autocomplete list on input focus
$(function () {
$("#input_field").autocomplete({
source: your_data,
minLength: 0
}).focus(function(){
$(this).data("uiAutocomplete").search($(this).val());
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment