Have created simple Ajax enabled contact forms before that have around 12 fields – worked fine….
Now working on a PHP enabled web page for job applications that has around 100 fields.
The ajax technique I was using was to send request via querystrings (&val1=test;&val2=test2 and etc …)
That is not going to scale very well with larger form with 100+ fields.
Any suggestions to point me in the right direction would be appreciated.
Maybe use jQuery Form plug-in instead? http://jquery.malsup.com/form/#getting-started
Derek
Start the form with the Post method
Or set your request method to “POST” in the ajax method
Or you can collect the form using $(form).serialize()…