Skip to content

Commit

Permalink
remove documentation for nonexistent utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchambers committed Feb 3, 2013
1 parent 1ab03c7 commit 00dbb4c
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -484,52 +484,9 @@ $.root().append('<ul id="vegetables"></ul>').html();
//=> <ul id="fruits">...</ul><ul id="vegetables"></ul>
```

#### $.dom()
Get the raw DOM of the parsed HTML document.

```js
$.dom()
//=> [{
// type: 'tag',
// name: 'ul',
// attribs: { id: 'fruits' },
// children:
// [ [Object],
// [Object],
// [Object],
// [Object],
// [Object],
// [Object],
// [Object] ],
// parent: null,
// prev: null,
// next: null
// }]
```

#### $.contains( container, contained )
Checks to see if the `contained` DOM element is a descendent of the `container` DOM element.

#### $.isArray( array )
Checks to see the passed argument is an array.

```js
$.isArray( $.dom() )
//=> true
```

#### $.inArray( elem, arr )
Checks to see if the element is in the array

#### $.makeArray( obj )
Turns an array-like object (like $) into a native array.

#### $.each( obj, function(index, elem) )
Generic iterator function.

#### $.merge( one, two )
Merge the contents of two arrays together into the first array.

## Screencasts

http://vimeo.com/31950192
Expand Down

0 comments on commit 00dbb4c

Please sign in to comment.