Skip to content

Instantly share code, notes, and snippets.

@ali-master
Created December 31, 2016 16:52
Show Gist options
  • Save ali-master/0898de848ef5d424384684401cf59556 to your computer and use it in GitHub Desktop.
Save ali-master/0898de848ef5d424384684401cf59556 to your computer and use it in GitHub Desktop.
Add JS File To DOM

Add JS File To DOM

function addJS(data) {
    (function (e) {
        e.setAttribute("src", data.src);
        e.setAttribute("id", data.id);
        
        document.getElementsByTagName("body")[0].appendChild(e);
    })(document.createElement("script"));
}

Usage

var data = {id: "lib", src: "//3px.ir/lib.min.js"}
addJS(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment