I have a page with few photos, when a photo is clicked, a div opens using the whole avaliable screen's space to show an album ... like the facebook's photo viewer. Now, I want to press the ESC key and back to the first page ...
PS: inside the div showAlbumDiv I call an Iframe, and by jquery.css property I chance the iframe's src property. Its because i have to passa an variable by get to the album viewer !
im using the following code in the album viewer:
jQuery(document).ready(function($) {
//closingDiv
$(document).keyup(function(e) {
if (e.keyCode == 27) {
$('#showAlbumDiv', window.opener).hide();
$('.allOfIt', window.opener).show();
$('#showAlbumDiv',window.opener).css('visibility','hidden');
} // esc
});
The opener has the divs allOfIt and showAlbumDiv .... the online sample is in http://videoarts.com.br/newSite/portifolio ...
only the album viewer: http://videoarts.com.br/newSite/album/40
Any help !?
thns !