Twitter-bootstrap – twitter bootstrap modal not really modal

twitter-bootstrap

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.

Best Answer

From the docs: http://getbootstrap.com/javascript/#modals

Specify a static backdrop option

$("#yourModal").modal({"backdrop": "static"});