개발노트
[개발노트] jqeury head에 넣기
별토끼.
2017. 9. 8. 16:19
반응형
jqeury head에 넣기
body에 정의된 id들이 적용되는 jquery를 head에 로딩하고 싶다면 아래 두가지 방법이 있다.
1.
1 2 3 | $(document).ready(function() { // execute your code here. }); | cs |
2.
1 2 3 | $(function() { }); | cs |
[참고]
https://stackoverflow.com/questions/15357384/writing-jquery-function-in-head-is-not-called
반응형