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
Post a Comment