liangjiahao 8f813121f8 添加查看按钮的窗口 3 ani în urmă
..
make fcedc92fa0 完成了基础 3 ani în urmă
src fcedc92fa0 完成了基础 3 ani în urmă
tests fcedc92fa0 完成了基础 3 ani în urmă
.npmignore fcedc92fa0 完成了基础 3 ani în urmă
LICENSE fcedc92fa0 完成了基础 3 ani în urmă
Makefile fcedc92fa0 完成了基础 3 ani în urmă
README.md fcedc92fa0 完成了基础 3 ani în urmă
component.json fcedc92fa0 完成了基础 3 ani în urmă
package.json 8f813121f8 添加查看按钮的窗口 3 ani în urmă
ready.js fcedc92fa0 完成了基础 3 ani în urmă
ready.min.js fcedc92fa0 完成了基础 3 ani în urmă

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