$(document).ready(function () { $('a.galleryLink').click(function (event) { event.preventDefault(); var id = $(this).attr('videos_id'); startFullScreen(webSiteRootURL + 'v/' + id); }); $('a.hrefLink').click(function (event) { event.preventDefault(); var link = $(this).attr('href'); startFullScreen(link); }); $(document).on('keyup', function (evt) { if (evt.keyCode == 27) { closeIframe(); } }); setInterval(function(){ if (!(!window.screenTop && !window.screenY)) { closeIframe(); } }, 1000); }); function startFullScreen(link){ $('body').addClass('fullScreen'); fullscreenOn(); var div = $('