Hi,
I have a form submitted:
Form.set('send',{'onSuccess':function(responseText, responseXML){
alert(responseText.data);
}
});
Form.send();
The responseText is "{'data':10}"
So, what should I do (beside using an eval) to make
alert(responseText.data); echo 10?
Right now, it is "undefined".
The request returns with the correct data.
