Other frameworks
✓ 1 minute setup
Easy

FeedbackJar + Vanilla JS / HTML

FeedbackJar works on any website with a single script tag. No framework, no npm, no build step required. Works with plain HTML, WordPress, Webflow, and any platform that lets you add custom scripts.

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

How to install FeedbackJar in Vanilla JS / HTML

1

Get your Widget ID

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

Add to your HTML — before </body>

html
<!-- Add before the closing </body> tag -->
<script src="https://cdn.feedbackjar.com/sdk.js"></script>
<script>
  window.fj.init('YOUR_WIDGET_ID');
</script>

Replace YOUR_WIDGET_ID with the ID from your FeedbackJar dashboard.

3

Customize position and theme (optional)

html
<script>
  window.fj.init('YOUR_WIDGET_ID', {
    position: 'right',  // 'left' or 'right'
    theme: 'auto',      // 'auto', 'light', or 'dark'
    trigger: 'default'  // 'default' or 'custom'
  });
</script>
4

Identify logged-in users (optional)

html
<script>
  // Call this after the user logs in
  window.fj.identify({
    id: 'user_123',
    email: 'user@example.com',
    firstName: 'Jane',
    lastName: 'Doe'
  });
</script>

What you get

  • Single script tag — no npm or build step
  • Works on any HTML page
  • WordPress, Webflow, Framer, Wix compatible
  • Dark/light/auto theme
  • Left or right positioning
  • Custom trigger support

Add feedback to your Vanilla JS / HTML app today

Sign up free, grab your Widget ID, and have the feedback widget running in your Vanilla JS / HTML 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 Vanilla JS / HTML docs →