jackmoore / colorbox

A light-weight, customizable lightbox plugin for jQuery
http://www.jacklmoore.com/colorbox/
MIT License
4.75k stars 1.14k forks source link

escKey event? #833

Closed cjaoude closed 7 years ago

cjaoude commented 7 years ago

when hitting escKey, the cleanup or close bindings doesn't seem to take effect?

$('document').bind('cbox_cleanup', function() { alert('cleanup'); });

jackmoore commented 7 years ago

It's document (a global object), not 'document' (a string used as a selector). Passing 'document' as a string to jQuery isn't going to match anything because it's not a valid selector.