Is there an option in the bootstrap modal to make it stay modal even if the user clicks away from the modal? The modal dialog hides when the user click outside the dialog. I would like it to stay modal until the user clicks the close button.
17
votes
3 Answers
32
votes
From the docs: http://getbootstrap.com/javascript/#modals
Specify a static backdrop option
$("#yourModal").modal({"backdrop": "static"});
15
votes
2
votes