Created
July 4, 2009 13:46
-
-
Save ocharles/140583 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| var $input = $('<input>').appendTo(...); | |
| var comp = new jQuery.myautocomplete($input, { | |
| onSelection: callback | |
| }); | |
| function callback() | |
| { | |
| this; // Would point to "comp" - the autocompleter above | |
| this.id() // Return the selected Id | |
| this.value() // Return the selected value | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment