OT: AJAX help

2006-10-04 Thread Scott Sharkey
Hi All, This is not cake-specific, though I will be building it into a cake-based site. I have an order form, that I want to AJAXIFY (?)... The first part, fetching the customer info from the tables when they type in their email address, is working fine. But I'm kinda stumped on exactly

Re: OT: AJAX help

2006-10-04 Thread Troy Schmidt
You will call a function that will then run an AJAX call, get the result, and manipulate it. Based on the result you will create childNodes no innerHTML or replacing. Actual DOM methods. It is probably programming level advanced, which is below expert. Personally I would recommend using

Re: OT: AJAX help

2006-10-04 Thread Scott Sharkey
Troy Schmidt wrote: You will call a function that will then run an AJAX call, get the result, and manipulate it. Based on the result you will create childNodes no innerHTML or replacing. Actual DOM methods. It is probably programming level advanced, which is below expert. Personally I