[jQuery] Re: Evaluation ajax response data

2008-03-05 Thread ajpiano
check out what is in actually in theData. if it's anything like the page requests i'm making, there's probably a doctype declaration or other such jazz in there that you're going to need to get rid of with some string manipulation... if you design your processEmail.php to return something like:

[jQuery] Re: Evaluation ajax response data

2008-03-05 Thread jquertil
try converting it to a string value theData.toString(); probably wont work though - maybe better to have the PHP script return a boolean true or false or 1 and 0 and then making sure your response type is value. On Mar 4, 9:43 am, rpupkin77 [EMAIL PROTECTED] wrote: Hi, I have a simple ajax

[jQuery] Re: Evaluation ajax response data

2008-03-05 Thread h0tzen
On 5 Mrz., 04:47, jquertil [EMAIL PROTECTED] wrote: probably wont work though - maybe better to have the PHP script return a boolean true or false or 1 and 0 and then making sure your response type is value. i'm also using a boolean identifier like ACK = true, or ACK = false in the