I am using this auto complete script for displaying suggestions: auto complete.
I read some old post having same sort of issue and found it's because of server side processing, JS merely take time.
But here in my case:
I am alerting server response first and then callig this ac script. Server response is coming in reasonable time (not fast though) but suggestions are getting displayed after a huge time delay. Moreover matchingNames array has only 2-3 values at this time.
What could be the problem?
TIA.
ankur rathi
Ranch Hand
Joined: Oct 11, 2004
Posts: 3829
posted
0
One difference I found is:
They are NOT calling this function on any event:
And I am calling a JS function on onKeyUp event of textbox, that JS function sends Ajax request... and then in callback function, I am calling this actb() function. :roll:
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35258
7
posted
0
Which part (or statement) of the code takes a long (too long) time? What does the actb function do - does the delay get introduced there?