본문 바로가기
jquery

jquery 라이브러리 동적 로딩

by 자바초보자 2015. 11. 16.
728x90
if(typeof jQuery == 'undefined') {
    var jqueryElement = document.createElement('script');
    jqueryElement.src = '/Web-home/wizUI/js/jquery-1.4.2.min.js';

    jqueryElement.onload = function(){
     readyFunction();
    }
    document.getElementsByTagName('head')[0].appendChild(jqueryElement);
}else{
 $(function(){
  readyFunction();
 });
}

function readyFunction(){
 alert('a');
}


728x90

'jquery' 카테고리의 다른 글

.wrap()  (0) 2015.12.02
현재 선택된 object의 tagname 변경  (0) 2015.11.24
jquery ajax 전송 시 array data  (0) 2015.10.21
jquery iframe 부모에 접근  (0) 2015.10.12
$(this) 내 자신 태그까지 가져오기  (0) 2015.10.08