"> "> ">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<!--
	# jQuery
	- 오픈소스 기반의 javascript 라이브러리.
	- jQuery를 사용하면 짧고 단순한 코드로 웹페이지에 다양한 효과 부여가능.
	
	# 다운로드 방식
	- <https://jquery.com/download>
	  1. Download the compressed, production jQuery 3.x.x 클릭
	  2. 웹페이지에 있는 라이브러리 코드 전체를 복사해서 에디터에 붙여넣기 'xxx.js'로 저장.
-->
<script type="text/javascript" src='jquery-3.7.1.min.js'></script>
<script type="text/javascript">
	/*
	 *  #(document).ready()
	 *	- ready()는 javascript dml load() 이벤트와 유사한 기능.
	 *	  jQuery를 사용하는 모든 웹페이지에서는 $(document).ready()로 시작.
	 */
	$(document).ready(function(){
		console.log('jquery 테스트입니다...');
		document.write('js 코드입니다..');
	});
</script>
</head>
<body>
</body>
</html>