This works, but is unusably slow. The text file isn't 'small', but still loads very quickly.
This is meant to be an alternative to our previous method that pulled the information from a sqlite table. This resulted in a very long load time (lots of queries), but a quick and responsive autocomplete.
Any suggestions?
var availableTags;
$.get("autocomplete.txt", function(data){
availableTags = data.split(",");
});
$( "#tags" ).autocomplete({
source: availableTags,
appendTo: '#autocompleteDump'
});