ded/domready

Installs: 655

Dependents: 4

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 129

Language:JavaScript

v1.0.12 2018-03-12 11:18 UTC

This package is auto-updated.

Last update: 2024-03-28 21:18:46 UTC


README

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