Skip to main content

Function: collect()

collect(subject, name?, parent?): MutatableCollector | CollectorBuilder

Create a new named Collector.

Note: If parent is not specified, the library will attempt to discover the closest non-volatile parents of any Element that match the selector.

Parameters

ParameterTypeDescription
subjectSubjectA CSS selector, XPath selector, or HTMLElement that the Collector should manage.
name?stringThe name of the Collector to be accessed from mutate.
parent?stringAn optional selector to set the nearest non-volatile parent.

Returns

MutatableCollector | CollectorBuilder

The Collector instance created. This Collector can be retrieved by name as well.

Example

Collect the title for future mutating.

<h1 class="page-title">Title</h1>
collect('.page-title', 'title')