Skip to content

Instantly share code, notes, and snippets.

@librz
Created May 15, 2025 03:22
Show Gist options
  • Save librz/7d2590afbeb18a2490ff798d43ed0ed7 to your computer and use it in GitHub Desktop.
Save librz/7d2590afbeb18a2490ff798d43ed0ed7 to your computer and use it in GitHub Desktop.
Prevent default form submit & manually submit using fetch
form.addEventListener('submit', async (e) => {
e.preventDefault();
const formData = new FormData(form);
const response = await fetch(form.action, {
method: form.method,
body: formData
});
// handle response...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment