function FormatPostcode()
{
var sPostcode;var objTempField;objTempField = document.getElementById('txtPostcode');
sPostcode = objTempField.value;sPostcode = sPostcode.toUpperCase().replace(' ','');
if (sPostcode.length >= 5){sPostcode=sPostcode.substr(0,sPostcode.length-3) + ' ' + sPostcode.substr(sPostcode.length-3,3);
}
objTempField.value=sPostcode;
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment