has anyone experimented with an AJAX autocomplete feature for search boxes?
This would send a small amount of data between server and client, but is the latency too slow to be useful?
has anyone experimented with an AJAX autocomplete feature for search boxes?
This would send a small amount of data between server and client, but is the latency too slow to be useful?
Since autocomplete fields require frequent client-server communications, some client-side caching could be useful (since it'll save network traffic), but it depends a lot on the number of possible keys to autocomplete.
Pit