Prevent ESC Key on Browsers

In a web page, after filling controls, pressing ESC Key clearing all the fields in the page. How to prevent ESC key clearing all the values in the page?

 

RajKumar | Answered# (13)
Reply For This Question
Answer(s) Posted
Prevent ESC Key on Browsers [Solved]

Below code will prevent browser clearing the fields.

$(document).keydown(function (e) {
        if (e.keyCode == 27) {
            e.preventDefault();
        }
    });

Raj Kumar | Answered# (13)
Post Your Answer
   Please login to post your answer.
  Member Login
  Email Address  
  Password  
   Sign Up?  
  Privacy   Terms Of Use   Contact Us
© 2016 Developerin.Net. All rights reserved.
Trademarks and Article Images mentioned in this site may belongs to Microsoft and other respective trademark owners.
Articles, Tutorials and all other content offered here is for educational purpose only and its author copyrights.