onsubmit in js
//This is the best way to use onsubmit in js
// ----------------JS
register_form = document.getElementById('register_form');
register_form.onsubmit = function(){
console.log(register_form);
console.log(register_form.email);
console.log(register_form.password);
return false;
};
// ----------------HTML
|