Http://stackoverflow.com/questions/13011127/how-to-remove-change-jquery-ui-autocomplete-helper-text
How to Remove/change JQuery UI Autocomplete Helper text?
It seems that's a new feature in jquery UI 1.9.0, because I used jquery UI plenty of times before and this text neve R poped up.
Couldn ' t find anything related on the API documentation.
So using a basic AutoComplete example with local source
$("#find-subj").AutoComplete({Source:Availabletags});
when The search matches it shows this related helper text:
' 1 result is available, use up and DOWN ARROW keys to navigate. '
How can I disable it on a nice-the-removing it with JQuery selectors.
7 Answers
I know this have been asnwered but just wanted to give an implementation example:
$("#find-subj").AutoComplete({Source:Availabletags,Messages:{Noresults:"',Results:function(){}}});
--------------This method can solve