I'm using the following plugin which extends the jQuery AutoComplete UI Plugin:
https://github.com/experteer/autocompleteTrigger/blob/master/jquery-ui.autocompleteTrigger.js
The select method is passed a UI variable:
select:function(event, ui) {
I need the ui variables in the
.bind("keyup", function(event) {
How can I get the ui variable in the .bind ?
Thanks
uito contain in thekeyupevent? The user has not selected an item yet (one may be under focus though). What are you trying to accomplish? – Andrew Whitaker Oct 31 '11 at 15:28