I have a form which doesn't need a submit button. I want the user to press the ESC key to submit the form.
How can I submit a form using the ESC key?
I have a form which doesn't need a submit button. I want the user to press the ESC key to submit the form.
How can I submit a form using the ESC key?
 
    
    If its what you want then use the
$(document).keyup(function(e) {
  if (e.keyCode == 27) $('#your_form').submit();
});
