Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript credit card input

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #40856
    krishyy
    Member

    Hello,

    I am trying to implement the credit card input type ..when I am start typing the digits I need to include dash every after 4 digits like this XXXX-XXXX-XXXX-XXXX and if it is amex card it should be like this XXXX-XXXXXX-XXXXX…

    can anyone help me with this?

    Thanks

    #114633
    lhoezee
    Member

    Are you using jQuery? If so you can use this plugin: http://digitalbush.com/projects/masked-input-plugin/

    If you are not using jQuery it might be worth using just for this reason.

    You might need to do a check based on what card they chose which would look something like this (not tested)



    if ( $('#card_type_dropdown').change(function () {
    if ( $(this).val() == 'amex' )
    {
    $("#credit").mask("9999-999999-99999");
    }
    else { $("#credit").mask("9999-9999-9999-9999"); }
    });

    **Note: ** I don’t really know if .mask supports live change events, but using something with this plugin might be the easiest / quickest option.

    Hopefully that helps you a little bit.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.