2
I have two screens List and Filter, both are redirected to a third screen called Visualise:
Button View from the screen List:
//ABRE TELA VISUALIZAR
$(document).on('click', '.visualizar', function(e) {
e.preventDefault;
var pClienteID = $(this).attr("data-id");
window.location.href = "/Administrativo/Cliente/Visualizar?pClienteID=" + parseInt(pClienteID);
});
//FIM
Button View from the screen Filter:
//ABRE TELA VISUALIZAR
$(document).on('click', '.visualizar', function(e) {
e.preventDefault;
var pClienteID = $(this).attr("data-id");
window.location.href = "/Administrativo/Cliente/Visualizar?pClienteID=" + parseInt(pClienteID);
});
//FIM
Question: How to implement the button Come back screen Visualise?
I found a similar topic here at Stackoverflow, it might help: http://answall.com/questions/70611/script-para-voltar-para-a-p%C3%A1gina-previous-updated
– Vitor Subhi