Nathan Sharfi

Results 4 comments of Nathan Sharfi

I just saw your comments. cool. Looking at this now, I am sure it was just a lack of time issue on my part, but I don't think I really...

I did figure out, if I use the down arrow, I get my drop down, but if I try to search for words, it is failing. I have removed the...

I guess writing that out helped me figure it out. valueKey: 'title',

``` $(document).ready(function(){ $("input#location").autocomplete({ showHint: true, valueKey: 'title', getTitle: function(item){ return item['title'] }, getValue: function(item){ return item['title'] }, source: [{ data: listings }] }).on('selected.xdsoft',function(e,datum){ //$("#mlsID").val("datum.mlsID"); //$("#listingID").val("datum.listingID"); //$("#communityID").val("datum.communityID"); //$("#builderID").val("datum.builderID"); }); }); ```