# domready

> modern domready

Latest version **1.0.8** (published 2015-04-24) · 0 weekly downloads

## Install

```sh
npm install domready
pnpm add domready
yarn add domready
bun add domready
```

## Health

**Score 18/100 (F)** — status: abandoned.

Positive: has types package; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.8 |
| Published | 2015-04-24 |
| First published | 2011-04-14 |
| Weekly downloads | 0 |
| TypeScript types | separate (@types/domready) |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 873 |
| Author | Dustin Diaz |
| Maintainers | ded, fat |
| Keywords | ender, domready, dom |

## Links

- npm: https://www.npmjs.com/package/domready
- Repository: https://github.com/ded/domready
- Issues: https://github.com/ded/domready/issues
- npm.io page: https://npm.io/package/domready

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 1.0.8 (latest) — 2015-04-24
- 1.0.7 — 2014-09-16
- 1.0.6 — 2014-08-10
- 1.0.5 — 2014-04-23
- 1.0.4 — 2014-02-22
- 1.0.3 — 2014-02-21
- 1.0.1 — 2014-02-15
- 1.0.0 — 2014-02-15
- 0.3.0 — 2014-02-15
- 0.2.13 — 2013-10-21
- 0.2.12 — 2013-07-12
- 0.2.11 — 2012-02-21
- 0.2.10 — 2011-09-18
- 0.2.9 — 2011-09-16
- 0.2.8 — 2011-09-16
- … 19 more at https://npm.io/package/domready/versions

## README

## domReady

It's easy. Works like this:

``` js
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`](https://github.com/ded/domready/tree/v0.3.0) release.

-------------------------


### Browser support

  * IE9+
  * Firefox 4+
  * Safari 3+
  * Chrome *
  * Opera *

### Building

``` sh
npm install
make
open tests/test.html
```

### Including with Ender

Don't already have [Ender](http://enderjs.com)? Install it like this:

``` sh
npm install ender -g
```

Include domready in your package:

``` sh
ender add domready
```

Then use it like this

``` js
require('domready')(function () {
  $('body').html('<p>boosh</p>')
})

// or

$(document).ready(function () {
  $('body').html('<p>boosh</p>')
})
```

---
_Source: https://npm.io/package/domready · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
