$(".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);
});
'WEB > jQuery' 카테고리의 다른 글
Input 휴대폰번호 hypen (-) 자동으로 넣어주기 (0) | 2019.12.03 |
---|---|
ticker jquery (0) | 2019.01.07 |
타이핑 애니메이션 (Typing jquery) (0) | 2018.10.10 |
레이어 바깥 클릭 시 레이어 사라지게 하는 방법 (0) | 2018.10.05 |
iOS에서 작동하지 않는 jQuery 클릭 이벤트 (0) | 2018.09.28 |