Skip to content

Instantly share code, notes, and snippets.

@briancollins
Created March 19, 2013 14:18
Show Gist options
  • Save briancollins/5196463 to your computer and use it in GitHub Desktop.
Save briancollins/5196463 to your computer and use it in GitHub Desktop.
$('.card-number').on('payment.cardType', function(e, cardType) {
var oldCardType = $(this).attr('data-card-type');
$(this).removeClass(oldCardType);
$(this).addClass(cardType);
$(this).attr('data-card-type', cardType);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment