Can auto-complete of JQuery search words that starts from the typed letters?
I try to use Jquery auto-complete. I have managed to do that but,开发者_如何学C if I type "a", auto-complete suggest all words that contain "a". But I want to see only those words that starts from "a". Is it possible to force the auto-complete to behave the way I want?
The brute-force way would be via a callback. That allows you to do the word matching yourself.
This has been discussed earlier, it seems.
精彩评论