prc b6c02717e6 Upload complete no-internet building environment. | před 1 rokem | |
---|---|---|
.. | ||
make | před 1 rokem | |
src | před 1 rokem | |
tests | před 1 rokem | |
.npmignore | před 1 rokem | |
LICENSE | před 1 rokem | |
Makefile | před 1 rokem | |
README.md | před 1 rokem | |
component.json | před 1 rokem | |
package.json | před 1 rokem | |
ready.js | před 1 rokem | |
ready.min.js | před 1 rokem |
It's easy. Works like this:
domready(function () {
// dom is loaded!
})
Compatibility with IE6
, IE7
, and IE8
has been fully dropped. If your application requires this level of support, please use the 0.3.0
release.
npm install
make
open tests/test.html
Don't already have Ender? Install it like this:
npm install ender -g
Include domready in your package:
ender add domready
Then use it like this
require('domready')(function () {
$('body').html('<p>boosh</p>')
})
// or
$(document).ready(function () {
$('body').html('<p>boosh</p>')
})