Skip to content

Instantly share code, notes, and snippets.

@miped
Created January 20, 2013 13:43
Show Gist options
  • Save miped/4578716 to your computer and use it in GitHub Desktop.
Save miped/4578716 to your computer and use it in GitHub Desktop.
Correct that shit
if (expiry_month.length == 1) {
expiry_month = '0' + expiry_month;
$('.card-expiry-month').val(expiry_month);
}
if (expiry_year.length == 2) {
expiry_year = '20' + expiry_year;
$('.card-expiry-year').val(expiry_year);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment