-2

I have One Register-form for creating Account.In Email Field How Can i Check Enter Email is Real Email Id or Fake Email Id without Sent Any Email.And Also when User Leave The Field Validation will be start.Any idea please Share me....

prabhu
  • 1

1 Answers1

0

You can't do this work with js(without sedn email):

i recommend to send a code to your user rmail and verify that.

this way is good to valid email and register user.

note : if you want to know is the email is in email pattern you can do with html and js :

html way :

<input type="email" name="email"  placeholder="Your email">

js way :

How to validate email address in JavaScript?

  • Thank you for your Replay.i have an doubt in case i enterthis is correct format but fake id it is Acceptable my form .Any idea to Avoid to this problem.... – prabhu Sep 14 '17 at 09:11