JavaScript – Email Validation script
August 6th, 2007 — adminvar emailfilter=/^w+[+.w-]*@([w-]+.)*w+[w-]*.([a-z]{2,4}|d+)$/i
function checkmail(e){
var returnval=emailfilter.test(e.value)
if (returnval==false){
alert(“Please enter a valid email address.”)
e.select()
}
return returnval
}
If you would like this article please donate, this will keep us motivated!
Add to your favourite







































February 24th, 2009 at 12:49 am
Perfect!Amazing!Super!Thank you very much