<script>
function agree() {
if($("#agree").is(":checked") == true) {
$(".support_form").fadeIn();
var target_offset = $("#agree").offset();
var target_top = target_offset.top;
$('html, body').animate({scrollTop:target_top}, 500);
} else {
$(".support_form").fadeOut();
}
}
$(document).ready(function() {
$(".support_form").hide();
});
</script>
'javascript, jquery' 카테고리의 다른 글
영역 보이기, 숨기기 - hide / show / fadeIn / fadeOut / slideUp / slideDown (0) | 2014.09.27 |
---|---|
div 스크롤바 이동, 포커스 (0) | 2014.09.27 |
XSS 방어 스크립트 (0) | 2014.09.27 |
selector(셀렉터) (0) | 2014.09.27 |
jquery 기본 사용법 (0) | 2014.09.27 |