<button class="btn" onClick="$('#firstModal').modal('show');">Click Here</button>
<!-- Modal -->
<div id="firstModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-body">
<button class="btn" onClick="$('#secondModal').modal('show');">Go to Second Popup</button>
</div>
</div>
<!-- Modal -->
<div id="secondModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-body">
Display some message here.
</div>
</div>
Functionality is working correctly but there is an issue with the layering of the popups. How can this be resolved?
This is how it currently appears: https://i.sstatic.net/0eVcl.png
I would like it to appear like this: https://i.sstatic.net/VbgSP.png