I'm using the following function:
$.post("ajaxcdk.php",{ sCredit: cValue, sCreditDate: cDate, sDisputeID: dispute },function(data){$('#totalC').html("( " + data.returnValue + " )");$('#balanceDiv').html(data.balance);$("input[name='"+xyz+"']").val(data.recordNum)},"json");
ajaxcdk returns (per Firebug )
{"returnValue":"22.00","balance":2978,"recordNum":123}
If I place an alert after the .post call, the ...