My issue with Bootstrap modal is that when i click on the button that must open a modal, the model will open fine, but without highlight, means i can click anywhere, no matter where, its will instantly close itself and the content of the model is behind the "shadow". How to get the content Highlighted? I've using a similar plugin called Lightbox V2. Tried to disable it but its the same issue.
<button type="button" data-toggle="modal" data-target="#myModal" class="btn" >Regis</button>
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header</h3>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">Save changes</button>
</div>
</div>