# submit

> This document is the Markdown version of [formisch.dev/methods/api/submit/](https://formisch.dev/methods/api/submit/). For the complete documentation index, see [llms.txt](https://formisch.dev/llms.txt).

Programmatically requests form submission by calling the native `requestSubmit()` method on the underlying form element.

```ts
submit(form);
```

## Parameters

- `form` `BaseFormStore`

### Explanation

The `form` parameter is the form store to submit. The function triggers form submission by calling the native `requestSubmit()` method on the underlying form element.

## Related

### Primitives

[`useForm`](/react/api/useForm.md)

### Methods

[`handleSubmit`](/methods/api/handleSubmit.md), [`validate`](/methods/api/validate.md), [`focus`](/methods/api/focus.md)
