Inside the bootstrap modal window, I inserted a link leading to another modal bootstrap window and hung up the event when opening the second modal window to hide the first one like this:
$('#myModal_forgot_pass').on('show.bs.modal ', function () { $('#myModal_login').modal('toggle'); }) everything works correctly, the second window pops up, the first closes, but after the second window closes, an incomprehensible indent appears to the right, which is not caught in the console. and when repeating opening operations, the indent increases with each closing of the second window. Can anyone come across?