Wized + StudioForm

Visit: https://www.youtube.com/playlist?list=PL8WSUo_ubyMtZ-WYzwVdN71jorKJEhMel


Populate a form data object for your Wized project at any time.

return Object.fromEntries(
  Array.from(StudioForm[StudioForm.keys[0]].data.form.entries()),
);


Show case video of Stripe Elements + WWX + StudioForm


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

Close-up screenshot of the StudioForm root-level JavaScript API. Note that "Welcome_Form" is the only instance in this project.

Close-up screenshot of the StudioForm instance-level JavaScript API


Last updated