Possible Duplicate:
Validate email address in Javascript?
I have to do validation for Email format, I am using the CODE below line to restrict Special Characters.
onkeypress="return AlphaNumericBox(event,this,'@._);"
But now the Problem is I don have any proper validation for the exact format for example its also accepting text like " @abcd.com.gmail,.. "
Is there any javascript validation for this?
any idea?
Thanks in advance.