Credit Card Mask Plugin for jQuery
This plugin has two ways of masking input, either on keyup or blur. By default the input will mask the users input on blur.
// masks input on blur
$('input.ccmask-blur').ccmask();
// masks input on keyup
$('input.ccmask-keyup').ccmask({keyup:true});
A demo is located at http://pixeldrew.github.io/plugins/jquery-ccmask/example/
Note: If masking is set to keyup caret position is handled by the plugin and will always be at the end of the input.
Bower is the easiest way to install this plugin
$bower install jquery-ccmask
Or download the tarball and include the minified file jquery.ccmask.min.js inside of the dist/ directory in your page
Copyright (c) 2014, Drew Foehn. (MIT License) See LICENSE for more info.