DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> Insert title here // jQuery.com // window.load(function () { // alert('문서를 다 읽은 후에 경고창 띄움'); // }); jQuery(document).ready(function () { alert('jQuery 준비'); }); $(document).ready(function () { alert('jQuery 준비2') }); $(function () { alert('jQuery 준비3') }); 안녕하세요