Package Exports
- dom-ready
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dom-ready) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Cross-Browser DOM Ready Handler
A minimalist, cross-browser "DOM Ready" event handler.
Example
The test.html is minimal and shows a typical usage.
But it's really very simple, much like the following code snippet:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="/path/to/dom-ready.js"></script>
<script type="text/javascript">
// When DOM is ready, this function is called and
// 'document' is passed to it.
// 'this' is pointing to current scope ('window', in this case.)
domReady(function(document, window) {
...
});
</script>
</head>
<body>
...
</body>
</html>Sources
The source code has been meticulously gathered from various authors (list follows) and compiled in this minimal closure. Once minified, the script is merely a few hundred bytes long.
domready, by Elias Torres
IEContentLoaded, by Diego Perini
onDOMContentLoaded, by Ilya Kantor (Russian)
domassistant, by Robert Nyman
DOMContentLoaded, by Microsoft Corp.
domcontentloaded, by Tanny O'Haley