smart-power-ui/node_modules/domready
23688nl 7a6d58607a 提交代码 2021-05-14 17:26:11 +08:00
..
make 提交代码 2021-05-14 17:26:11 +08:00
src 提交代码 2021-05-14 17:26:11 +08:00
tests 提交代码 2021-05-14 17:26:11 +08:00
.npmignore 提交代码 2021-05-14 17:26:11 +08:00
LICENSE 提交代码 2021-05-14 17:26:11 +08:00
Makefile 提交代码 2021-05-14 17:26:11 +08:00
README.md 提交代码 2021-05-14 17:26:11 +08:00
component.json 提交代码 2021-05-14 17:26:11 +08:00
package.json 提交代码 2021-05-14 17:26:11 +08:00
ready.js 提交代码 2021-05-14 17:26:11 +08:00
ready.min.js 提交代码 2021-05-14 17:26:11 +08:00

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