## LoadError event Triggered when the `Element` fails to load. **This event is only emitted from the `payment`, `linkAuthentication`, `address`, `expressCheckout`, `currencySelector`, `taxId`, `card`, and `cardNumber` Elements.** **Syntax:** `element.on(...)` - `event` ('loaderror') **required** The name of the event. In this case, `loaderror`. - `handler` (function) **required** `handler(event) => void` is a **callback function** that you provide that will be called when the event is fired. When called it will be passed an event object with the following properties: - `elementType` (string) The type of element that emitted this event. - `error` (object) An `error` object that describes the failure. ### Handle an Element loaderror event ```js paymentElement.on('loaderror', function(event) { // Handle loaderror event }); ``` ```es_next paymentElement.on('loaderror', (event) => { // Handle loaderror event }); ```