jQuery cdn
https://releases.jquery.com/
온라인 라이브러리 복사해서
html에 붙여 넣기



같은의미
$(document).ready(function(){
$("#red-box").fadeOut(2000);
});
$(function(){
$(".red-box").fadeOut(2000);
});
(this).hide()
hide show와 차이점
fadeTO("속도"opacity)
투명도 0~1 조절 가능함
$(selector).hide(speed, callback);
Chaining구현
$(selector).action().action().action()