Element Javascript SDK
Method provides a script to seamlessly integrate Elements into your web application.
Installation
Include the initialization script into your application’s main html file.
Configuration
Once the initialization script has been included into your application, create an instance of the Method class.
Configuration Parameters
Name | Type | Description |
---|---|---|
env | string | The Method environment with which the element with interact with. Options: dev, sandbox, or production. See Elements Environments |
onEvent | Function | A callback invoked with event, a native MessageEvent, when any event is triggered by the element. |
onSuccess | Function | A callback invoked with payload when an element’s flow has successfully been completed. See the success event |
onError | Function | A callback invoked with error when an error is raised by the element. See the error event. |
onExit | Function | A callback invoked with payload when an element exits. See the exit event. |
onOpen | Function | A callback invoked with payload when an element is successfully launched. See the open event. |
See Method Elements events for more info.
Launch
Retrieve an element token
Before you can launch an element, you must first create an element_token for the element through the Method API.
In this example, we’re creating an element_token for the Connect Element.
See create an element token for more info.
Launch the element
Now that a Method instance and an element_token have been created, you can now launch the element.