I am not sure about the official name for it but its very cool, and i would like to learn if someone has some guide for me to follow.
The one that i am looking at is what Google did with their Google Suggest. http://www.google.com/webhp?complete=1&hl=en
How do they do it when you type in words, it matches what there are in their database and show you suggestion.
I know basically when you write your Javascript, it compiles the possible word list and then show it to you when you type in matching alphabet. Much like how PHP has done it for their Function List recently, but their method require them to recompile the list every time they added something new.
So is Google Suggest just a huge pre-compiled list or are they doing it Dynamically? If it is being done Dynamically, i am very interested in learning how to do it.
Someone have any guide on this?
Thank you in advance..
Regards
Mian
Anyone could guide on suggestive search box?
Moderator: General Moderators
You might want to check http://sourceforge.net/projects/js-rs/ and similar projects
or you just read, how google suggests works:
http://serversideguy.blogspot.com/2004/ ... ected.html
when you're done with that you learn to use javascript, especially xmlhttprequest, and you don't need strange phpclasses from sourceforge that pretend to merge php and javascript.
http://serversideguy.blogspot.com/2004/ ... ected.html
when you're done with that you learn to use javascript, especially xmlhttprequest, and you don't need strange phpclasses from sourceforge that pretend to merge php and javascript.
... alternatively you could read the source code of these 'strange phpclasses' ... and don't waste your time reading someones flurry of speculation.jonemo wrote: when you're done with that you learn to use javascript, especially xmlhttprequest, and you don't need strange phpclasses from sourceforge that pretend to merge php and javascript.