Reputation: 820
I'm using http://onehackoranother.com/projects/jquery/boxy/
How to close boxy window on press ESC key?
Upvotes: 0
Views: 801
Reputation: 11
if (this.options.closeable) {
jQuery(document.body).bind('keypress.boxy', function(evt) {
var key = evt.which || evt.keyCode;
if (key == 27) {
self.hide();
jQuery(document.body).unbind('keypress.boxy');
}
});
}
Upvotes: 1