Skip to content

Instantly share code, notes, and snippets.

@theprogrammerin
Created March 13, 2014 06:46
Show Gist options
  • Save theprogrammerin/9522961 to your computer and use it in GitHub Desktop.
Save theprogrammerin/9522961 to your computer and use it in GitHub Desktop.

Revisions

  1. theprogrammerin created this gist Mar 13, 2014.
    10 changes: 10 additions & 0 deletions loadDev.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    function loadDev(){
    var jq = document.createElement("script");
    jq.setAttribute("src","http://code.jquery.com/jquery-2.1.0.js")
    document.head.appendChild(jq);
    var us = document.createElement("script");
    us.setAttribute("src","http://underscorejs.org/underscore.js")
    document.head.appendChild(us);
    console.log("Loaded Jquery and Underscore")
    }
    loadDev()