Marketo Form made with MktoForms2 API stuck on "Please Wait..."
I've been developing using the Marketo Forms javascript api, and loading in MktoForms2 object via script tags like suggested in docs here: https://developers.marketo.com/javascript-api/forms/
I've used something like this example code below to load a form into our site,
<script src="//app-xyz.marketo.com/js/forms2/js/forms2.js"></script>
<form id="mktoForm_621"></form>
<script>
MktoForms2.loadForm("//app-xyz.marketo.com", "718-GIV-198", 621);
</script>
The form loads as expected, but when I click submit no network requests are made in the chrome developer tools "Network" tab, and the submit button changes to "Please wait..." and hangs. When using the forms2 javascript API do I explicitly need to make API calls to marketo myself to submit the form? Should I be seeing an outgoing network request?