/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function validate(email) { var reg = /^([A-Za-z0-9\'_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/; if(reg.test(email) == false) { return false; } }
URL: http://zoocha.com/what-we-do/development/