Trigger with code
const survey = await window.Frill('survey', {
key: 'YOUR_SURVEY_KEY', // <-- Add Survey key here
callbacks: {
onReady(survey) {
console.log(survey);
},
},
});Force show
const survey = await window.Frill('survey', {
key: 'YOUR_SURVEY_KEY', // <-- Add Survey key here
force: true,
});Last updated