Skip to content

Instantly share code, notes, and snippets.

@rds76
rds76 / fullcode.js
Last active December 16, 2019 08:43
HADasboard hack to fullscreen images on click
$(function() {
var lastParent = null, imgHackTimer = null;
var onImgClickHack = function(evnt){
// if(evnt) console.log(evnt.target.src);
if (lastParent) {
$('#fullImgHack').fadeOut('fast', function() {
$('#fullImgHack').children().appendTo(lastParent);
$('#fullImgHack').css('z-index', '0');
lastParent = null;
});