autocomplete - Textbox does not show the normal Google Chrome credit card detection -


when using google chrome, credit card textbox on checkout page not show normal ability select existing credit card. did set "auto complete type" google recommends.

is due long "asp.net" style id field?

enter image description here

<input name="ctl00$conmain$checkoutcontrol1$txtcreditcardnumber" type="text" id="ctl00_conmain_checkoutcontrol1_txtcreditcardnumber" title="credit card number " x-autocompletetype="cc-number"> 

https://dia-fundraising-dinner-2015.simpletix.com/checkout/guest/order/df71f52a-f9b9-4dcd-923b-4e2d46bd754a/

it works fine, need name on creditcard first input field, chrome uses autocomplete rest. use autocomplete besides x-autocompletetype support other versions of chrome.

<input name="ccname" id="frmnamecc" required    placeholder="full name" autocomplete="cc-name">  <input name="ctl00$conmain$checkoutcontrol1$txtcreditcardnumber"    type="text" id="ctl00_conmain_checkoutcontrol1_txtcreditcardnumber"   title="credit card number " x-autocompletetype="cc-number"    autocomplete="cc-number"> 

see jsfiddle: https://jsfiddle.net/c3ck1uxc/1/


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -