FAQ

Does this library generate form elements?

No, this library does not generate form elements but only the fields. If you are generating fields inside a form element, it is recommended to use the novalidate attribute on the form to prevent browser validation conflicts.

It's also a good practice to use the showValidationErrors method when clicking the submit button to display any validation errors.

Example:
<form novalidate>
  <!-- Your Jedison fields here -->
  <button type="submit" onclick="showValidationErrors()">Submit</button>
</form>