Nuri Akman
Nuri Akman

Reputation: 820

How to close boxy window on press ESC key?

I'm using http://onehackoranother.com/projects/jquery/boxy/

How to close boxy window on press ESC key?

Upvotes: 0

Views: 801

Answers (1)

baboleevan
baboleevan

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

Related Questions