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.
- IE9+
- Firefox 4+
- Safari 3+
- Chrome *
- Opera *
npm install
make
open tests/test.htmlDon't already have Ender? Install it like this:
npm install ender -gInclude domready in your package:
ender add domreadyThen use it like this
require('domready')(function(){$('body').html('<p>boosh</p>')})// or$(document).ready(function(){$('body').html('<p>boosh</p>')})