jquery = 남이 짜둔 javascript 코드
jquery 를 쓰려면 꼭 임포트를 해야함
https://www.w3schools.com/jquery/jquery_get_started.asp
jQuery Get Started
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
google cdn 이라는 코드를 복붙
1
2
3
|
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
|
cs |