개발일지/JavaScript + jquery

[jQuery] js파일에서 jQuery 사용하기

연습용365 2022. 4. 11. 00:35
function loadJQuery() {
    var oScript = document.createElement("script");
    oScript.type = "text/javascript";
    oScript.charset = "utf-8";		  
    oScript.src = "http://code.jquery.com/jquery-1.6.2.min.js";	
    document.getElementsByTagName("head")[0].appendChild(oScript);
}

$(function(){
    $()
});