<script>
function open(){
//$("#floatralking .box").width(230);
$("#floatralking .box").animate({'width': '230px'}, "fast");
$(".open").hide();
$(".close").show();
}
function close(){
//$("#floatralking .box").width(50);
$("#floatralking .box").animate({'width': '50px'}, "fast");
$(".open").show();
$(".close").hide();
}
</script>
'[ Web 관련 ] > jQuery' 카테고리의 다른 글
jQuery bind(), unbind(), on(), off() 이벤트 등록 및 해제 (0) | 2023.02.10 |
---|---|
셀렉터. form 요소 찾을때. form name (0) | 2022.09.08 |
체크박스 전체 체크 (0) | 2022.05.10 |
제이쿼리 특수문자 제거 (0) | 2022.02.07 |
ajax 파일 업로드 (0) | 2021.11.29 |