How to go back to the previous mode in Bootstrap

0

I'm in a modal, I want to click a button and go back to the previous modal in Bootstrap + Javascript.

    
asked by anonymous 21.02.2017 / 18:15

2 answers

1

Can solve the problem with the following code:

$('#modalVisualizarTamanho').on('hidden.bs.modal', function (e) {
$('#modalVisualizarComponentes').modal('show');    
});
    
21.02.2017 / 19:11
0

try using:

$('#modalItensRomaneio').modal('toggle');
    
21.02.2017 / 19:28