Created
December 1, 2012 22:32
-
-
Save wangtzINT/4185647 to your computer and use it in GitHub Desktop.
Jquery autocomplete noets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select: function(event, ui) { | |
... | |
return false; // or event.preventDefault(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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