> For the complete documentation index, see [llms.txt](https://bmg.gitbook.io/form/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bmg.gitbook.io/form/wized-+-studioform.md).

# Wized + StudioForm

{% embed url="<https://www.youtube.com/playlist?list=PL8WSUo_ubyMtZ-WYzwVdN71jorKJEhMel>" %}
Visit: <https://www.youtube.com/playlist?list=PL8WSUo_ubyMtZ-WYzwVdN71jorKJEhMel>
{% endembed %}

***

<figure><img src="https://3218275886-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F7CGjyq0fHnWhMI656FIJ%2Fuploads%2FZkl3zAjKoELuFlCFM9jk%2FScreenshot%202024-03-01%20at%2008.31.47.png?alt=media&amp;token=b8cef527-a839-4b96-aea4-d20cb9a8a451" alt=""><figcaption><p>Populate a form data object for your Wized project at any time.</p></figcaption></figure>

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

***

{% embed url="<https://www.loom.com/share/49ab394c55334a509272422564ba9676>" %}
Show case video of Stripe Elements + WWX + StudioForm
{% endembed %}

***

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:<br>

```javascript
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

<figure><img src="https://3218275886-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F7CGjyq0fHnWhMI656FIJ%2Fuploads%2FfP66LDRQAtgeBxNOEOtC%2FScreenshot%202023-12-11%20at%2009.14.06.png?alt=media&amp;token=d16a7d16-c278-42c9-95ab-fed50ddc132b" alt=""><figcaption><p>Close-up screenshot of the StudioForm root-level JavaScript API. Note that "Welcome_Form" is the only instance in this project.</p></figcaption></figure>

<figure><img src="https://3218275886-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F7CGjyq0fHnWhMI656FIJ%2Fuploads%2F16c1NfpGdhqBK15trOqS%2FScreenshot%202023-12-11%20at%2009.16.54.png?alt=media&amp;token=8b082b73-3c97-4a06-992c-e8119bea6daa" alt=""><figcaption><p>Close-up screenshot of the StudioForm instance-level JavaScript API</p></figcaption></figure>

***
