$(function(){ /* GNB - web */ /* 1Depth */ $(".lnb li.dep1 > p").click(function(){ //$(this).next().attr("class",""); $(this).parent().addClass("on"); $(this).next().slideDown(300); $(this).parent().siblings().find("ul").css("display","none"); $(this).parent().siblings().removeClass("on"); //$(".lnb_3area").hide(); }).focus(function(){ $(this).click(); /* 위의 ("#header #gnb li.dep1 > a").click(function()}{}) 실행!! */ }); /* 2Depth */ $(".lnb li.dep1 ul li.dep2 a").click(function(){ $(this).parent().addClass("on"); $(this).parent().siblings().removeClass("on"); }).focus(function(){ $(this).click(); }); });