A page can't be manipulated safely until the document is "ready." jQuery detects this state of readiness for you. Code included inside $( document ).ready() will only run once the page Document Object Model (DOM) is ready for JavaScript code to execute. Code included inside $( window ).on( "load", function() { ... }) will run once the entire page (images or iframes), not just the DOM, is ready.
$( document ).ready(function() {
console.log( "ready!" );
});
//shortcut
$(function() {
console.log( "ready!" );
});
https://learn.jquery.com/using-jquery-core/document-ready/
'Computer Programming > Javascript' 카테고리의 다른 글
자바스크립트 자료구조 Map과 Set Object의 사용 (0) | 2023.06.12 |
---|---|
자바스크립트의 일급 객체(First-class Function)로서의 함수 (0) | 2023.06.12 |
JavaScript의 발전 및 특징(+ AJAX | XML 용어 정리) (0) | 2023.06.12 |
🎮 자바스크립트로 2D 게임 개발하기 (블럭맞추기) | canvas, JQuery, localStorage 사용 (0) | 2023.06.06 |
HTML&CSS로 간단한 로그인 페이지 만들기 (1) | 2023.06.01 |