1

I'm trying to put a date value in the input box for the date picker when the user click on the key ESC (e.keyCode == 27) once he as open the datepicker.

My test case:

1) Click on the input box, the date picker show up;

2) The user decide to cancel the selection by clicking on the esc key.

3) The following date should be then put as default (01/01/2011) in the input box since he has not selected any date.

Please fork my Fiddle

akjoshi
  • 15,374
  • 13
  • 103
  • 121
Yannick
  • 3,553
  • 9
  • 43
  • 60

1 Answers1

1
$("#input").keyup(function(e) {
    if (e.keyCode == 27) {
        $("#input").val("01/01/2011");
    }
});

See it in action here: http://jsfiddle.net/nayish/SYwpy/46/

Nachshon Schwartz
  • 15,289
  • 20
  • 59
  • 98