2

i am working on a html page having an modal then if modal loads on page then if i press ESC key then modal closed , that is very unliking to me. how to prevent this.?? please note that modal using cakephp render. i tried this , but not working

$(document).keydown(function(e) {
    if (e.keyCode == 27) return false;
});
Manish Prajapati
  • 1,583
  • 2
  • 13
  • 21

1 Answers1

7

add this attribute in your modal div

data-keyboard="false"

Example

<div id="myModal" data-keyboard="false">

</div> 
iam
  • 973
  • 4
  • 11
  • 21