FeedbackJar works on any Framer site via the custom code field in Site Settings. No code component or plugin needed. Runs on the published site.
# Sign up at app.feedbackjar.com
# Create a widget → copy your Widget ID Framer editor → top-left menu → Site Settings → General → Custom Code <script src="https://cdn.feedbackjar.com/sdk.js"></script>
<script>
window.fj.init('YOUR_WIDGET_ID');
</script> → Publish your site — custom code does not run in the Framer preview or canvas.
<script>
// Give a frame the link "#feedback", then:
document.addEventListener('click', function (e) {
if (e.target.closest('a[href="#feedback"]')) {
e.preventDefault();
window.fj.showWidget();
}
});
</script> → Initialize with trigger: 'custom' to hide the default button.
Sign up free, grab your Widget ID, and have the feedback widget running in your Framer app in 1 minute.