Events

Ready event

The first event that marks the initial preparation of Imber widget
document.addEventListener("IMBER_READY", () => {
// Your event or function
})

Form filled

This event triggered when contact fill form data
document.addEventListener("IMBER_FORM_FILLED", ({detail}) => {
console.log(detail)
})
Last modified 1yr ago