If your model box getting close by some where click on screen outside of your popup box. You need add following attribute in your model box:
data-backdrop="static"
data-keyboard="false"
your model box will appear like this
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" data-backdrop="static" data-keyboard="false">
if you are opening model by JS
$('#myModal').modal({backdrop: 'static', keyboard: false})
</div>
0 Comment(s)