/* var similarList = [ { name: "부패행위신고상담바로가기", link: "https://www.clean.go.kr" }, { name: "청탁금지법", link: "http://www.acrc.go.kr/acrc/board.do?command=searchDetail&menuId=0502070106&menuId=05020701" }, { name: "행동강령", link: "http://www.acrc.go.kr/acrc/board.do?command=searchDetail&menuId=05020705" }, { name: "청렴교육", link: "http://edu.acrc.go.kr/index.do?menuId=05020708" }, { name: "부패방지", link: "http://www.acrc.go.kr/acrc/board.do?command=searchDetail&menuId=05020707" }, ]; */ //console.log("test"+test); /* var similarList = [ { name: "부패행위신고상담바로가기", link: "https://www.clean.go.kr" }, { name: "청탁금지법", link: "http://www.acrc.go.kr/acrc/board.do?command=searchDetail&menuId=0502070106&menuId=05020701" }, { name: "행동강령", link: "http://www.acrc.go.kr/acrc/board.do?command=searchDetail&menuId=05020705" }, { name: "청렴교육", link: "http://edu.acrc.go.kr/index.do?menuId=05020708" }, { name: "부패방지", link: "http://www.acrc.go.kr/acrc/board.do?command=searchDetail&menuId=05020707" }, ]; */ $(document).ready(function() { var popupBox = $(".similar-popup"); similarList.forEach(function(menu) { popupBox.children("ul").append("
  • " + menu.name + "
  • "); }); $(document).on("click", ".similarity-box", function() { var icon = $(this) .children("div") .children("i"); $(this).toggleClass("active"); if ($(this).hasClass("active")) icon.html("remove"); else icon.html("add"); popupBox.toggleClass("active"); //popupBox.css("top", $(this).offset().top); }); $(document).on("click", ".similar-toggle", function() { var icon = $(this).children("i"); var list = $(this) .parent() .children("similar-popup"); list.toggleClass("active"); if (list.hasClass("active")) icon.html("remove"); else icon.html("add"); popupBox.toggleClass("active"); }); });