iOS Native credit card autofill function conflicts with mobile checkout -


in mobile safari ios 8,when have auto fill enabled credit card, in checkout, when try add new card, safari prompts save card or not, , if click on of options safari crashes. per research, please find below few links discussion on same topic on apple forums:

https://discussions.apple.com/thread/6652733

https://discussions.apple.com/message/23512169

has 1 solution this???

@gupta120 : there different thread points case if have input type = password in same form has credit card form, credt card auto save native functionality becomes un responsive , crashes safary, pleas echeck link stop safari on ios7 prompting save card data need intercept form submit , change input password type thing other password

$("#submit").on("click", function(){     try{         $("input[type=password]").attr("type", "hidden");     } catch(ex){         try {             $("input[type=password]").prop("type", "hidden");         } catch(ex) {}     }           }); 

Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -