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
Parameter | Type | Description |
---|---|---|
subject | Subject | A CSS selector, XPath selector, or HTMLElement that the Collector should manage. |
name ? | string | The name of the Collector to be accessed from mutate. |
parent ? | string | An 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')