Embedding the Feedback Form
Easily collect feedback from customers and stakeholders inside your app or website.
Installation instructions
Open/Closing the dialog
// Open the feedback form
window.Released.show('form', 'your-form-id');
// Close the feedback form
window.Released.close('form', 'your-form-id');const openFeedback = () => {
window.Released?.show('form', 'your-form-id');
};
<button onClick={openFeedback}>
Feedback
</button>Customize the page
1
Example
Last updated
Was this helpful?
