Skip to content
/ script Public

script utils for creating script element and adding/removing them from <head>

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
license-mini
Notifications You must be signed in to change notification settings

podefr/script

Repository files navigation

script

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

Installation

npm install script-utils

In the browser:

<script src="script-utils-browser.js"></script>

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

About

script utils for creating script element and adding/removing them from <head>

Resources

License

Unknown, Unknown licenses found

Licenses found

Unknown
LICENSE
Unknown
license-mini

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published