jquery

jquery 라이브러리 동적 로딩

자바초보자 2015. 11. 16. 11:05
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