Online Earning Sources (Without Investment)

If you want to post, send your post on dotnetglobe@gmail.com .Put 'Title' as 'Subject'

Pages

Thursday, July 16, 2009

Check Email format using Javascript

function validatemail()
{

var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
var address = document.form1.txtaltermail.value;
if(reg.test(address) == false)
{
return false;
}
else
{
return(true);
}
}

No comments:

itworld