Love to share my practical experience with you! I started this blog for self reference but I am happy to see that this blog helping other as well to groom! Please feel free to provide suggestions.
Jul 30, 2012
Magento: Zip code validation allows only numeric & hyphen
function zip_val (zip)
{ if (!(/^[0-9-]+$/.test(zip))) { return false; } return true;
}
No comments:
Post a Comment