<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>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,