## Retrieve a Tax ID Element This method retrieves a previously created Tax ID Element. `elements.getElement('taxId')` returns one of the following: * An instance of a Tax ID Element. * `null`, when no Tax ID Element has been created. **Syntax:** `elements.getElement(...)` - `type` ('taxId') **required** The type of Element being retrieved, which is `taxId` in this case. ### Retrieve a Tax ID Element ```js var taxIdElement = elements.getElement('taxId'); ``` ```es_next const taxIdElement = elements.getElement('taxId'); ```