shift73k/assets_old/node_modules/domready
2022-08-13 07:32:36 -04:00
..
make progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
src progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
tests progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
.npmignore progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
component.json progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
LICENSE progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
Makefile progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
package.json progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
README.md progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
ready.js progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00
ready.min.js progress on migrating to heex templates and font-icons 2022-08-13 07:32:36 -04:00

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