I'm in a modal, I want to click a button and go back to the previous modal in Bootstrap + Javascript.
I'm in a modal, I want to click a button and go back to the previous modal in Bootstrap + Javascript.
Can solve the problem with the following code:
$('#modalVisualizarTamanho').on('hidden.bs.modal', function (e) {
$('#modalVisualizarComponentes').modal('show');
});
try using:
$('#modalItensRomaneio').modal('toggle');