I'm a rails beginner and am curious how the live search on http://jobs.37signals.com is implemented?
I can understand the background but not the front end.
what I understand:
- after certain # of characters have been typed, a request is made to backend with the phrase as search term
- do a database search where job description like
'%_phrase_%'
- how to bring data back?
Using firebug on the site it seems that the whole result is returned as a javascript that contains html tags...
I'm curious as to how this is done?
I was not able to find any tutorials/examples that would show how this whole process is done.
Any direction?