I think I have read every stackoverflow and google result available on this issue and they all seem to refer to the first jquery autocomplete plugin and not the current jquery ui autocomplete.
What is the method for forcing the autocomplete results to update from the data source instead of the cached list?
The jquery ui autocomplete does not do any caching. The caching is happening at the browser level. To prevent it from happening, use
$.ajaxSetup.You could also instead supply a function to the source option that does the ajax request for you with
cache: falseif you don’t want to disable caching globally.