Wondering is there a function in javascript without jquery or any framework that allows me to serialize the form and access the serialized version?
For debugging purposes this might help you:
function print_form_data(form) { const form_data = new FormData(form); for (const item of form_data.entries()) { console.log(item); } return false; }