Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
jQuery

jQuery Objects

Understand jQuery collections as array-like objects with methods.

jQuery Objects — a practical guide to jQuery objects with clear examples you can reuse in real projects.

jQuery Tutorial Series (56/101). Prefer one article? Read the complete jQuery tutorial.

Short description

length, [0] for raw DOM node, .get() / .toArray() for arrays.

jQuery object tip

var $items = $('.item');
$items.length;
$items[0];           // DOM element
$items.toArray();    // array of DOM nodes

Leave a reply

Your email address will not be published. Required fields are marked *