Check the valid Email Address using JavaScript

Hi all,

Use the following code for check the valid email address.

var filterEmail = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z])+\.)+([a-zA-Z]{2,4})+$/;
if(filterEmail.test(Email))//Check the Email Format.
{
//..........
}

...S.VinothkumaR.

No comments: