JSON response ... {"success" : "true", "message" : "good"}


Code ...

            function ajaxRequest2(){
                var url = "/cgidev2p/r_chgpwd.pgm";
                var pars = 'v_current=' + escape($F('v_current')) +
'&v_new=' + escape($F('v_new')) + '&v_confirm=' + escape($F('v_confirm')) +
'&sessionid=' + escape($F('sessionid'));
                //var submitObj = document.getElementById('goButton');
                new Ajax.Request(url, {
                    method: 'get',
                    //contentType: 'application/json',
                    parameters: pars,
                    onSuccess: function(transport){
                        alert("Success");
                        var json = transport.responseJSON;
                        alert(json.success);
                    }
                                        , onError: function(transport){
                                                alert("skipped");
                                        }
                    , onComplete: function(transport){
                        alert("Complete");
                    }
                });
            }



Alerts that I see are Success and Complete.  The alert(json.success) does
not fire.

If I change the code to alert(json) the alert fires with "null".




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to