TypeError: 'undefined' is not a function (evaluating '$(document)')
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
TypeError: 'undefined' is not a function (evaluating '$(document)')
use
jQuery(document);
instead of
$(document);
You can easily wrap this up in a self executing function so that $
refers to jQuery again (and avoids polluting the global namespace as well), e.g.
(function ($) {
$(document);
}(jQuery));
'Web > javascript / jQuery' 카테고리의 다른 글
[js] 정규식 표현법 (2) | 2015.04.16 |
---|---|
[jQuery] SlickGrid 에서 각 행을 루프돌면서 상태에 따른 색상 세팅하기 (2) | 2015.04.13 |
[펌] 자바스크립트 문자열 다루기 (6) | 2015.04.13 |
jQuery에서 특정 라디오버튼만 동적 체크 (4) | 2015.04.13 |
[펌] jquery 체크박스 체크 관련 (6) | 2015.04.13 |