Simple Form with Translations

by brendanbond

HTML

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="https://cdn.form.io/js/formio.full.min.css" />
<script src="https://cdn.form.io/js/formio.full.js"></script>

<div class="container">
  <div id="formio"></div>
</div>

JavaScript

Formio.createForm(document.getElementById('formio'), 'https://bb-happy-time.form.io/w4').then(
  (form) => {
    form.on("change", (...args) => {
      console.log("Changed!", args);
    })
  },
);