0
I’ll leave it here as an answer to make it clearer:
$.ajax(settings).done(function (response) {
console.log(response);
console.log(response.Payment.Status);
}
0
0
I’ll leave it here as an answer to make it clearer:
$.ajax(settings).done(function (response) {
console.log(response);
console.log(response.Payment.Status);
}
Browser other questions tagged javascript ajax
You are not signed in. Login or sign up in order to post.
already tried Sponse.Payment.Status?
– aa_sp
This seems to be asynchronous, soon the idea of "return" falls apart, because there is no way to return a value if it will only be obtained in 5 seconds or 1 minute. If you show what you’re really trying to do, it’ll be easier to help
– Isac
@aa_sp Opa your tip worked, I was only trying with Payment.Status, Valeu man.
– Renato
blza @Renato left as an answer to facilitate ;)
– aa_sp