FeedbackJar works on any Webflow site via the Footer Code field in Site Settings. No App or plugin needed. Appears on every published page automatically.
# Sign up at app.feedbackjar.com
# Create a widget → copy your Widget ID <!-- Site Settings → Custom Code → Footer Code -->
<script src="https://cdn.feedbackjar.com/sdk.js"></script>
<script>
window.fj.init('YOUR_WIDGET_ID');
</script> → Footer Code runs on every published page. Replace YOUR_WIDGET_ID with your ID.
Click Publish → the widget appears on your live domain (not the Designer canvas). <!-- Add to Page Settings → Before </body> tag, or an Embed element -->
<script>
document.querySelector('#feedback-button').addEventListener('click', function () {
window.fj.showWidget();
});
</script> → Give any button an ID of feedback-button in element settings, and initialize with trigger: 'custom'.
Sign up free, grab your Widget ID, and have the feedback widget running in your Webflow app in 1 minute.