Jul 30, 2012

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/

No comments:

Post a Comment