Skip to content

Instantly share code, notes, and snippets.

@briancollins
Last active December 22, 2015 03:29
Show Gist options
  • Save briancollins/6410829 to your computer and use it in GitHub Desktop.
Save briancollins/6410829 to your computer and use it in GitHub Desktop.
<input type="text" id="cc_exp" />
<input type="hidden" id="exp_month" data-stripe="exp_month" />
<input type="hidden" id="exp_year" data-stripe="exp_year" />
$('#cc_exp').payment('formatCardExpiry').change(function() {
var exp = $.payment.cardExpiryVal($(this).val());
$('#exp_month').val(exp.month);
$('#exp_year').val(exp.year);
return true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment