npm.io
0.0.3 • Published 12 years ago

script-utils

Licence
Version
0.0.3
Deps
0
Vulns
0
Weekly
0

script

Script utils to create script elements, add and remove them from <head>

Installation

npm install script-utils

In the browser:

&lt;script src="script-utils-browser"&gt;&lt;/script&gt;

Usage

var script = require("script-utils");

// create a new script element with an onload callback
var newScript = script.create("source/to/file", function onload() {
	// do something when script is loaded;
}, this);

// Append the script to &lt;head&gt;
script.append(newScript);

// Remove script from &lt;head&gt;
script.remove(newScript);

Licence

MIT

Keywords