Humblytics
  • Overview
    • Introduction to Humblytics
    • Features Overview
    • Frequently Asked Questions
  • How to Get Started
    • Create a New Account
    • Add Humblytics Analytics to a Custom / Self-Hosted Site
    • How to Add Humblytics Analytics to Your Weblow Site
    • How to Add Humblytics Analytics to Your Framer Site
  • Split Testing Overview
    • How Humblytics Split Testing Works - Under the Hood
    • How to Setup a Split Test
    • Creating A/B Page Variants for Split Testing
    • How to Analyze Split Test Data
    • Using the Humblytics A/B Sample‑Size Calculator
    • Deciding How Long to Run an A/B Test
  • How to Track Custom Form Submissions
    • GoHighLevel
    • Tally.so
      • Webflow – How to Track Tally.so Form Submissions
      • Framer – How to Track Tally.so Form Submissions
      • Custom/Self-Hosted – How to Track Tally.so Form Submissions
    • Typeform
      • Webflow – How to Track Typeform Submissions
      • Framer – How to Track Typeform Submissions
      • Custom/Self-Hosted – How to Track Typeform Submissions
    • Cal.com
      • Webflow – How to Track Cal.com Booking Submissions
      • Framer – How to Track Cal.com Booking Submissions
      • Custom/Self-Hosted – How to Track Cal.com Booking Submissions
    • Hubspot
      • Framer – How to Track HubSpot Form Submissions
      • Custom/Self-Hosted – How to Track HubSpot Form Submissions
      • Webflow – How to Track HubSpot Form Submissions
  • How to Track Custom Click Events
    • How to Track Click Events on Custom / Self‑Hosted Site
    • How to Add Custom Event Tracking for Webflow Sites
    • How to Add Custom Event Tracking for Framer Sites
  • Understanding Your Data
    • Understanding Site Traffic
    • Understanding Pages Data
    • Understanding Click Data
    • Understanding Forms Data
    • Understanding Heatmap
    • Understanding Funnels
  • Campaign Tracking with UTM Links
Powered by GitBook
On this page

Was this helpful?

  1. How to Track Custom Form Submissions
  2. Typeform

Webflow – How to Track Typeform Submissions

Humblytics makes it easy to track custom form submissions—including embedded Typeform widgets—without any need for complex analytics tools or cookie banners. Follow this guide to set up accurate form conversion tracking using a simple embed script.

Why Track Form Submissions?

Tracking form completions helps you: • Measure lead conversion from landing pages • Evaluate the performance of different form layouts or CTAs • Run A/B tests and attribute success accurately • Trigger goals in funnel analysis

Prerequisites

Before starting, make sure: • You have a Typeform embedded on your site • Humblytics is installed and active on the same page (via the tracking script)

Step-by-Step Setup

To track Typeform submissions, embed the following code where your Typeform appears:

<!-- Typeform -->
<div data-tf-on-submit="submit" data-tf-live="FORMID"></div>
<script src="//embed.typeform.com/next/embed.js"></script>

<!-- Humblytics custom tracking begins -->
<script>
  function submit({ formId, responseId }) {
    window.parent.postMessage({
      type: 'formSubmission',
      formName: 'custom-form',
      formId: formId,
      responseId: responseId
    }, '*');
  }
</script>
<!-- Humblytics custom tracking ends -->

Explanation:

  • data-tf-on-submit="submit" binds the Typeform submission event to your custom function

  • The submit() function calls Humblytics.trackFormSubmission("custom-form"), which logs the submission as a tracked event

Viewing Submissions in Your Dashboard

Once your form is live and receiving submissions:

  1. Log into your Humblytics dashboard

  2. Navigate to the Forms section

  3. Look for "custom-form" under tracked form events

  4. Use filters (by traffic source, device, or time) to analyze performance

That’s It—No Cookies, No Consent Banners

Because Humblytics uses a cookie-free, privacy-first tracking method, you don’t need to worry about compliance banners. Your data stays accurate and user-friendly from day one.

PreviousTypeformNextFramer – How to Track Typeform Submissions

Last updated 16 days ago

Was this helpful?