--- sidebar_label: ElementHandle.isIntersectingViewport --- # ElementHandle.isIntersectingViewport() method Resolves to true if the element is visible in the current viewport. **Signature:** ```typescript class ElementHandle { isIntersectingViewport( this: ElementHandle, options?: { threshold?: number; } ): Promise; } ``` ## Parameters | Parameter | Type | Description | | --------- | ------------------------------------------------------------ | ----------------- | | this | [ElementHandle](./puppeteer.elementhandle.md)<Element> | | | options | { threshold?: number; } | (Optional) | **Returns:** Promise<boolean>