Answers for "implement email js"

3

js validate email

function validateEmail(email) {
  var re = /^(([^<>()[]\.,;:s@"]+(.[^<>()[]\.,;:s@"]+)*)|(".+"))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/;
  return re.test(email);
}
Posted by: Guest on May-06-2020
2

javascript email link

<body onload="javascript: window.location.href='mailto:[email protected]';">
Posted by: Guest on March-25-2020

Browse Popular Code Answers by Language