StudioForm Docs
Quickstart
Quickstart
  • Quickstart
  • Automatic Form Field Validation
  • Navigation [Currently being edited]
  • Events + Combo Classes
  • Wized + StudioForm
  • Xano + StudioForm [Currently being edited]
Powered by GitBook
On this page

Wized + StudioForm

Last updated 12 months ago


return Object.fromEntries(
  Array.from(StudioForm[StudioForm.keys[0]].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


Visit:
https://www.youtube.com/playlist?list=PL8WSUo_ubyMtZ-WYzwVdN71jorKJEhMel
Show case video of Stripe Elements + WWX + StudioForm
Populate a form data object for your Wized project at any time.
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