Newer Version Available

This content describes an older version of this product. View Latest

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.