How can I access a propertie from this object?
I just want to get the 'responseText' propertie.
This object come from this function:
function freight(cep){
var response = $.post("./getFrete.php", {cep_destino: cep}, function(data){
return data
});
console.log(response);
}
I've been trying to resolve it with "object_name['responseText']" and "object_name.responseText", but without success yet.