[jQuery] values a serializeArray() on the server

2009-11-28 Thread YankeeFan
Greetings all, I'm trying to learn myself about the load() function using serializeArray(). But when I send my form data to a server script for processing, I do not know how to access the data sent by my form. I've tried $_REQUEST, $_POST, and $_GET but all seem to be empty. My code is short

Re: [jQuery] values a serializeArray() on the server

2009-11-28 Thread YankeeFan
Solved my own mystery. I was using the wrong #id in the serializeArray() line. Should be: $('#response').load('response.php', $(#form1).serializeArray()); NOTE the $(#form1).serializeArray()... I had this as $('#response').serializeArray(). Sorry for the posts. Too tired, I should have