안녕하세요

프로그램 과정에서 막혔던 문제들에 대한 해결책 정리


페이지 목록

레이블이 document인 게시물을 표시합니다. 모든 게시물 표시
레이블이 document인 게시물을 표시합니다. 모든 게시물 표시

2017년 12월 15일 금요일

jquery document ready 편하게 쓰기

$(function() {
 // code here
});

$(function( $ ) {
 // code here
});

(function() {
 // code here
}());
$(document).ready(function(){
  // code here
});

저 4개는 같은 기능이다.
출처: https://stackoverflow.com/questions/12008843/start-javascript-code-with-function-etc