Skip to content

Instantly share code, notes, and snippets.

@skinnyfads
Created January 16, 2023 18:14
Show Gist options
  • Save skinnyfads/33f034bf2e1d530dda5bcef4169558b6 to your computer and use it in GitHub Desktop.
Save skinnyfads/33f034bf2e1d530dda5bcef4169558b6 to your computer and use it in GitHub Desktop.
Get all value form data on submit
yourForm.onsubmit = (event) => {
event.preventDefault();
const formData = new FormData(yourForm);
for (const [key, value] of formData) {
console.log({ key, value });
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment