Javascript: Submit JSON object from form values

function getObjectFromForm(formSelector) { document.querySelector(formSelector) .addEventListener("submit", e => { e.preventDefault(); const data = Object.fromEntries(new FormData(e.target)); // then do what you want with data or JSON.stringify(data) }); }
Vanilla js to get json objet from form values

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.