본문으로 바로가기

$(".content-bar").click(function () {
        $(".content-bottom").slideToggle(600);
        
        var text = "이전 컨텐츠 더보기    ";
        if($(this).attr("openMoreCotent") == undefined) {
         text += "▲";
         $(this).attr("openMoreCotent", "open");
        } else {
         text += "▼";
         $(this).removeAttr("openMoreCotent");
        }
        
        $(this).text(text);
    });