$(document).ready(function(){
});
$(document).ready(function(){
console.log('hello');
});
$(function(){
console.log(ready2);
})
$(*) : DOM의 모든 Element 선택
$(document).ready(function(){
$("*").css("color","red");
)}
$("tag") : 지정된 태그와 일치하는 모든 Element 선택
$("#id") : 지정된 아이디와 일치하는 모든 Element 선택
$(".class") : 지정된 클래스와 일치하는 모든 Element 선택
$("tag1, tag2") : 지정된 여러 태그들과 일치하는 모든 Element 선택