[eluser]Total Shop UK[/eluser]
Mainly because the lightbox I use is lightweight and fast.
I've got the lightbox to close on esc but it's messy
Code:
function iclose(e) {
lbox = document.getElementsByClassName("lbOn");
var kcode = e ? e.which : window.event.keyCode;
if (kcode==27 || kcode==0){
var lb = new lightbox(lbox[0]);
lb.deactivate();
}
}
document.onkeypress = iclose;
If I press ESC then click the lightbox again it sends an extra lightbox for every click.