We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e10b87a commit 346e01dCopy full SHA for 346e01d
Readme.md
@@ -443,25 +443,6 @@ $('.pear').html()
443
### Miscellaneous
444
DOM element methods that don't fit anywhere else
445
446
-#### .get( [index] )
447
-Retrieve the DOM elements matched by the cheerio object. If no index is specified, it will get an array of all matched elements.
448
-
449
-```js
450
-$('li').get(0)
451
-//=> { raw: 'li class="apple"', ... }
452
453
-$('li').get()
454
-//=> [ {...}, {...}, {...} ]
455
-```
456
457
-#### .size()
458
-Return the number of elements in the cheerio object. Same as `length`.
459
460
461
-$('li').size()
462
-//=> 3
463
464
465
#### .toArray()
466
Retrieve all the DOM elements contained in the jQuery set, as an array.
467
0 commit comments