It's easy. Works like this:
domready(function () {
// dom is loaded!
})
- IE6+
- Firefox 2+
- Safari 3+
- Chrome *
- Opera *
$ npm install -dev
$ make
$ open tests/test.html
Don't already have Ender? Ender relies on Node, and NPM. Install it like this:
npm install ender -g
Once you're good with that. Include domready in your package:
ender add domready
Then use it like this:
$.domReady(function () {
$('body').html('<p>boosh</p>')
})
// or
$(document).ready(function () {
$('body').html('<p>boosh</p>')
})