So, I\'m using this code to open another modal window in a current opened modal window:
Try this:
// Hide the login modal $('#login').modal('hide'); // Show the next modal after the fade effect is finished setTimeout(function(){ $('#lost').modal('show'); }, 500);
This simple hack works for me.