IBAN Validation check
Based on the work of http://toms-cafe.de/iban/iban.js I have developed my version of an IBAN validation check. You can modify the country support by modifying the variable CODE_LENGTHS. Here is my implementation: function alertValidIBAN(iban) { alert(isValidIBANNumber(iban)); } /* * Returns 1 if the IBAN is valid * Returns FALSE if the IBAN’s length is not as … Read more