lhl 6ff0e96ad3 8-4-1 hai 1 ano
..
make 6ff0e96ad3 8-4-1 hai 1 ano
src 6ff0e96ad3 8-4-1 hai 1 ano
tests 6ff0e96ad3 8-4-1 hai 1 ano
.npmignore 6ff0e96ad3 8-4-1 hai 1 ano
LICENSE 6ff0e96ad3 8-4-1 hai 1 ano
Makefile 6ff0e96ad3 8-4-1 hai 1 ano
README.md 6ff0e96ad3 8-4-1 hai 1 ano
component.json 6ff0e96ad3 8-4-1 hai 1 ano
package.json 6ff0e96ad3 8-4-1 hai 1 ano
ready.js 6ff0e96ad3 8-4-1 hai 1 ano
ready.min.js 6ff0e96ad3 8-4-1 hai 1 ano

README.md

domReady

It's easy. Works like this:

domready(function () {
  // dom is loaded!
})

Deprecation Notice

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.


Browser support

  • IE9+
  • Firefox 4+
  • Safari 3+
  • Chrome *
  • Opera *

Building

npm install
make
open tests/test.html

Including with Ender

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>')
})