https://ninefloor.github.io/web-practice/work/33/
$(document).ready(function(){
$(".layerPopup").click(function(){
$(".layer").show();
})
$(".close").click(function(){
$(this).parent().hide();
})
})
https://ninefloor.github.io/web-practice/work/33/
$(document).ready(function(){
$(".layerPopup").click(function(){
$(".layer").show();
})
$(".close").click(function(){
$(this).parent().hide();
})
})