Skip to content

Instantly share code, notes, and snippets.

View YoSmudge's full-sized avatar

Smudge YoSmudge

  • Monzo
  • Guildford
View GitHub Profile
@YoSmudge
YoSmudge / card.js
Created September 12, 2011 14:12
Card Auto-selector (jQuery)
function detect_card(){
var types = {
Amex: [34,37],
Visa: [4],
Mastercard: [51, 52, 53, 54, 55],
Discover: [6011]
};
//Loop the options and build a regexp
$.each(types, function(i,opts){