JSPM

  • Created
  • Published
  • Downloads 408324
  • Score
    100M100P100Q221297F

modern domready

Package Exports

  • domready

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (domready) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

domReady

It's easy. Works like this:

domready(function () {
  // dom is loaded!
})

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