βοΈPre-fill name and email address
1. Wait for the button to load
if(window.isUserHelpReady == true) {
//get your user data here
}2. Send the user data to the button
Function
Definition
if(window.isUserHelpReady == true) {
const userData = {
name:"Bob",
email:"[email protected]"
}
window.UserHelpSetName(userData.name)
window.UserHelpSetEmail(userData.email)
}Last updated