| each( callback )
| Returns: jQuery |
| Execute a function within the context of every matched element. |
| size( )
| Returns: Number |
| The number of elements in the jQuery object. |
| length
| Returns: Number |
| The number of elements in the jQuery object. |
| eq( position )
| Returns: jQuery |
| Reduce the set of matched elements to a single element. |
| get( )
| Returns: Array<Element> |
| Access all matched DOM elements. |
| get( index )
| Returns: Element |
| Access a single matched DOM element at a specified index in the matched set. |
| index( subject )
| Returns: Number |
| Searches every matched element for the object and returns the index of the element, if found, starting with zero. |