Hi everyone, I’m integrating Wized + Webflow + Xano for user signups, and I need help passing reference field IDs (company_id, job_title_id) to Xano.
🔹 Setup:
A Webflow dropdown menu lets users select a Company and Role (values come from Xano).
A hidden input field (
company_id_hidden
,role_id_hidden
) is supposed to store the selected ID.The Wized signup request includes these values and sends them to Xano.
🔹 What Works:
✅ Xano correctly stores company_id
and job_title_id
when tested manually.
✅ Webflow dropdowns show the correct company and role names.
✅ Wized request structure is correct for sending company_id
and job_title_id
.
🔹 What’s Not Working:
❌ The hidden inputs stay empty after selecting a dropdown option.
❌ The function to update the hidden inputs isn’t running (no Console logs).
❌ When testing in Console, document.querySelector('#field')
returns undefined
, meaning Webflow might be modifying or blocking JavaScript from detecting elements.
🎯 Goal:
Capture the selected company ID and role ID.
Store these values inside hidden inputs for Wized to read.
Ensure Wized sends these values to Xano when submitting the form.
❓ Has anyone encountered Webflow preventing JavaScript from detecting form elements? Any workarounds?