FeedbackJar
No-code platforms ✓ 1 minute setup Easy

FeedbackJar + Framer

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.

Get your Widget ID free → 7-day free trial · No credit card required

How to install FeedbackJar in Framer

1

Get your Widget ID

bash
# Sign up at app.feedbackjar.com
# Create a widget → copy your Widget ID
2

Open Site Settings → General → Custom Code

text
Framer editor → top-left menu → Site Settings → General → Custom Code
3

Paste into "End of <body> tag"

html
<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.

4

Trigger from a Framer element (optional)

html
<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.

What you get

  • One paste into End of <body> custom code
  • No code component or plugin needed
  • Works on framer.website and custom domains
  • Custom trigger from any Framer element
  • Theme and position options
  • Runs only on the published site

Add feedback to your Framer app today

Sign up free, grab your Widget ID, and have the feedback widget running in your Framer app in 1 minute.

Start Free Trial 7-day free trial · No credit card required

Frequently Asked Questions

Looking for the full technical reference? Read the Framer docs →