0

I have some input

i need if my value ( for example value = " Email " ) have @ character

web -> alert ( ' your message have been send ' )

else my value haven't @ character

web -> alert ( ' your email is wrong ') 

so what would u guys suggest ?

Danin Na
  • 409
  • 1
  • 3
  • 13
  • there are tons of email validators available on web currently and seems you have not even used google to find a solution for this basic question. – Jai Aug 24 '15 at 08:19

1 Answers1

1

I suggest using jQuery Validation Plugin: http://jqueryvalidation.org/.

Use type="email" on your input.

raduation
  • 792
  • 5
  • 11