Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

find()

Locates a component using its local ID (aura:id).

Returns different types depending on the result.

  1. If the local ID is unique, returns the component.
  2. If there are multiple components with the same local ID, returns an array of the components.
  3. If there is no matching local ID, returns undefined.

Signature

find(String | Object name)

Parameters

name
Type: String | Object
If name is an object, return instances of it. Otherwise, finds a component using its aura:id.