I have jquery code that allow me to prompt when pressing ESC key, like this...
$(document).ready(function(){
$(document).bind('keydown', function(e) {
if (e.which == 27) {
alert('esc pressed');
}
});
});
My question is that when press ESC key I want to prompt with jquery lightbox, does any one know which light box that will works when pressing ESC key!
And how do I can write that code to add any any lightbox code with above code!
AM