zvoase (owner)

Revisions

gist: 51350 Download_button fork
public
Public Clone URL: git://gist.github.com/51350.git
Embed All Files: show embed
JSShell.js #
1
2
3
4
5
6
7
8
9
10
11
function add_script (url) {
    head = document.getElementsByTagName('head')[0];
    script = document.createElement('script');
    script.src = url;
    script.type = 'text/javascript';
    head.appendChild(script);
    return script;
}
add_script('http://www.billyreisinger.com/jash/source/latest/Jash.js');
add_script('http://google.com/jsapi');
add_script('http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.js');