Form Tracking
Form Tracking
Nimbata allows you to track form submissions just like you track phone calls!
To track forms make sure you have the Nimbata script enabled on your website.
Step 1. Go to Tracking > Tracking Code.
Step 2. Toggle on the 'Enable Form Tracking?' button.
Step 3. After selecting which pages you wish to monitor and the visitor sources to track, click on the 'Save & Publish' button that's appeared.
Step 4. Grab the line of code located at the top of the page, and deploy it on the website you wish to track forms.
After the first form submission, you can view form submission data and edit form details.
To view form submission details:
Step 1. Go to Tracking > Forms and click on the 'Form Details' cogwheel button.
Step 2. View the form details from the right-side menu that appears:
To edit form details:
Step 1. Go to Activity > Forms. Going to Tracking > Forms will also redirect you to forms under activity.
Step 2. Click on the collapsible, right-pointing arrow to view and edit form details:
Step 3. You can edit the following:
- Which form you're editing the details of (Blog Comments Form field).
- Refresh, view trend data, export data to file, edit form field names, and show columns (top-right menu).
- Delete the form (bin icon).
- Copy landing page URL (dual-arrow instruction).
- Edit the monetary value of the form.
1) Log into your Hubspot account. Select "Marketing" -> "Lead Capture" -> "Forms" and locate the form you want to track in Nimbata.
2) Click on Edit Form.
3) Select "Style & Preview" at the top of the page. On the top left of the Style & Preview page, turn On the Set as raw HTML form switch.
4) Click Publish.
Why am I not seeing tracked forms in Nimbata?
When you add our form-tracking script, we essentially monitor for specific events to understand whether or not to collect the form data. In theory there are 2 events we can look out for, but 1 of them is not optimal:
1) Form button clicks - this will result in us sending you bad data for form entries that are not valid
2) Form submissions
If the event is set to "Form submissions" and you still don't see form submissions in Nimbata check the following:
You are using the vanilla JS implementation. In this case no submit event is raised. In particular, the form’s onsubmit event handler is not run.
This leaves our form tracking script blind to this action and so we are not capturing and sending your form data to the app.
To resolve this we suggest you use one of two solutions:
- Perform the form submission with jQuery’s built in submit method which does raise the events
- Use vanilla JS HTMLFormElement.requestSubmit() instead
Updated on: 28/07/2025
Thank you!