htc 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
..
make 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
src 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
tests 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
.npmignore 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
LICENSE 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
Makefile 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
README.md 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
component.json 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
package.json 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
ready.js 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش
ready.min.js 7ca38fdcbb 善行少年PC端首次提交(基础版) 10 ماه پیش

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