Magento: Zip code validation allows only numeric & hyphen
function zip_val (zip)
{
if (!(/^[0-9-]+$/.test(zip))) {
return false;
}
return true;
}
Note: You will know more about Magento & Download latest version of Magento from http://www.magentocommerce.com/
Magento: Zip code validation allows only numeric & hyphen
Reviewed by Web Technology Funda
on
11:32:00 PM
Rating:
No comments