form data
let fd = new FormData();
fd.append("email", data.email);
form data
let fd = new FormData();
fd.append("email", data.email);
how to get data form
const formData = {}
Array.from(e.currentTarget.elements).map(item=>{
if (!item.name) return null;
formData[item.name] = item.value
})
console.log(formData)
show form data
$('form').serialize() //this produces: "foo=1&bar=xxx&this=hi"
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us