Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wangtzINT/4185647 to your computer and use it in GitHub Desktop.
Save wangtzINT/4185647 to your computer and use it in GitHub Desktop.
Jquery autocomplete noets
select: function(event, ui) {
...
return false; // or event.preventDefault();
}
/*
* How to edit the content of text box?
*/
select: function(event, ui) {
...
this.value = "New Content";
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment