Wized + StudioForm


return Object.fromEntries(
  Array.from(StudioForm.YOUR_FORM_INSTANCE_NAME.data.form.entries()),
);



My (Leon's) favourite code snippet for console logging your form data to see if everything is working correctly without relying on native webflow submissions:

StudioForm[StudioForm.keys[0]].data.form.forEach((value, key) => {
    console.log(key, ": ", value);
});


[While this is being written...]

Explore the JavaScript API in the chrome dev tools on your own


Last updated