Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Which Event is best for google suggest type AJAX stuff

Status
Not open for further replies.

jdbolt

Programmer
Aug 10, 2005
89
CA
I have a search field which fetches results and populates a div on the fly.

I was wondering which event type would be best for this. At th emoment I have onkeyup, but if the user is typing a long word, it can be quite slow as it perfroms the search on every key stroke.

I was wondering what event shall I use to minimize the number of calls to the AJAX engine, but still have the search resutls returned quickly and on the fly

This demo does it quite well:


Thanks!
 
i believe google uses on keyup too, but they set a timer for it to make the ajax call after Nms. if another keystroke is made before the timeout, it is cancelled and replaced with the new one. this way you only perform the call when the user has paused sufficiently long enough

-jeff
try { succeed(); } catch(E) { tryAgain(); } finally { rtfm(); }
i like your sleeves...they're real big
 
You can also introduce a threshold number of characters before searching begins. If the user types "a", there's little point going off and doing a search on that string, so only search when you hit, say, 2, 3, or 4 characters in length.

Hope this helps,
Dan


[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
How would I cancel the previous event? Using cancelBubble or something similar?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top