jquery-autocomplete
jquery-autocomplete copied to clipboard
make autocomplete usable with Japanese inputs
jquery-autocomplete does not work well with Japanese inputs on Firefox. This is caused because Firefox does not fire keydown events when Japanese IME is active. There are two ways to solve the issue: 1) use setTimeout to watch for changes. 2) Ignore inputs during Japanese IME is active, and evaluate inputs when it is done. I fixed the issue with the second option.