$(function(){ //visual height 모바일 높이 대응 function resetHeight(){ $('#subtop,#sub_bg').css('height', $(window).innerHeight()); } window.addEventListener("resize", resetHeight); resetHeight(); $('.img_enlargement').append(''); $(document).on('click',"#bg2, #enlargement_popup .close", function () { $('#bg2').fadeOut(); $("#enlargement_popup div.inner").html(''); $("#enlargement_popup").hide(); window.dispatchEvent(new Event('resize')); }); $(document).on("click","body.tm .img_enlargement",function(){ var thisImg = $(this).find('img').attr('src'); $('#bg2').show(); $("#enlargement_popup").show(); $("#enlargement_popup").html( "
"+ ""+ "
"+ "
" ); window.dispatchEvent(new Event('resize')); }); });