-1
How can I redirect to any page after the function is successfully performed? Script below: I’m a bit of a layman with Javascript. Thank you!
function alterarquantidade(id,tipo) {
var quantidadeInput = document.getElementById("quantidade_produto"+id).value;
$.ajax({
url: 'alterarquantidade.php',
type: 'POST',
dataType: 'json',
data: {id_produto: id, quantidade : quantidadeInput, tipo : tipo},
success: function (retorno) {
console.log(retorno);
}
});
}
Good morning! I tried but it didn’t work.
– Jose JR
Are you sure you are falling into the callback Success function of $.ajax?
– Marcus Vinicius
Yeah, he’s closing in on the callback Success
– Jose JR