Skip to content

Instantly share code, notes, and snippets.

@erik4github
Created April 13, 2018 19:31
Show Gist options
  • Save erik4github/b91336f3058bd7ea9313907e80e56cf2 to your computer and use it in GitHub Desktop.
Save erik4github/b91336f3058bd7ea9313907e80e56cf2 to your computer and use it in GitHub Desktop.
Vanilla JavaScript equivalent of jQuery serialize
Array.from(new FormData(formElement), event =>
event.map(encodeURIComponent).join("=")
).join("&");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment