--- sidebar_label: ElementHandle.$ --- # ElementHandle.$() method Queries the current element for an element matching the given selector. #### Signature: ```typescript class ElementHandle { $( selector: Selector ): Promise> | null>; } ``` ## Parameters | Parameter | Type | Description | | --------- | -------- | -------------------------- | | selector | Selector | The selector to query for. | **Returns:** Promise<[ElementHandle](./puppeteer.elementhandle.md)<[NodeFor](./puppeteer.nodefor.md)<Selector>> \| null> A [element handle](./puppeteer.elementhandle.md) to the first element matching the given selector. Otherwise, `null`.