caoge c760052ff9 机车状态修改 | 8 months ago | |
---|---|---|
.. | ||
make | 8 months ago | |
src | 8 months ago | |
tests | 8 months ago | |
.npmignore | 8 months ago | |
LICENSE | 8 months ago | |
Makefile | 8 months ago | |
README.md | 8 months ago | |
component.json | 8 months ago | |
package.json | 8 months ago | |
ready.js | 8 months ago | |
ready.min.js | 8 months ago |
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>')
})