purple-dream-91712
03/17/2024, 1:04 PMbillowy-morning-42410
03/18/2024, 2:43 PM<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Triggers</title>
</head>
<body>
<script src="https://cdn.botpress.cloud/webchat/v0/inject.js"></script>
<script src="https://mediafiles.botpress.cloud/{botId}/webchat/config.js" defer></script>
<button id="myButton">Click Me!</button>
<script>
function handleClick() {
console.log('Button clicked!')
window.botpressWebChat.sendPayload({
type: 'trigger',
payload: {
myCustomProperty: 'hello',
},
})
}
const button = document.getElementById('myButton')
button.addEventListener('click', handleClick)
window.botpressWebChat.onEvent(
function (event) {
if (event.type === 'LIFECYCLE.LOADED') {
window.botpressWebChat.sendEvent({ type: 'show' })
}
},
['LIFECYCLE.LOADED']
)
</script>
</body>
</html>
billowy-morning-42410
03/18/2024, 2:43 PMpurple-dream-91712
03/19/2024, 9:50 AM