Skip to content

Instantly share code, notes, and snippets.

@andreaseriksson
Created May 18, 2013 11:48
Show Gist options
  • Save andreaseriksson/5604156 to your computer and use it in GitHub Desktop.
Save andreaseriksson/5604156 to your computer and use it in GitHub Desktop.
JQUERY UI Autocomplete
$(function() {
$("#birds").autocomplete({
source: "search.php",
minLength: 2,
select: function( event, ui ) {
alert(ui.item.value);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment