In a shown modal there is a form. If I focus on an input field (any field for that matter) and press ESC key, that modal is hidden. However, if I don\'t focus on a form fiel
Set the keyboard value to false!
Example:
OR if you are using JavaScript:
$(function () { $('.modal').modal({ backdrop: 'static', keyboard: false }); }