lhl 6ff0e96ad3 8-4-1 | hai 1 ano | |
---|---|---|
.. | ||
make | hai 1 ano | |
src | hai 1 ano | |
tests | hai 1 ano | |
.npmignore | hai 1 ano | |
LICENSE | hai 1 ano | |
Makefile | hai 1 ano | |
README.md | hai 1 ano | |
component.json | hai 1 ano | |
package.json | hai 1 ano | |
ready.js | hai 1 ano | |
ready.min.js | hai 1 ano |
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>')
})