1

My app has Stripe Card element, every time the user click in this element my Chrome display a list of Cards in my account to be selected. I've contacted Stripe Dev team and it's not possible to disable it while creating the element. They have suggested to set "autocomplete='off'" in the parent Form of this card element. It doesn't work. I believe because the Card Element is inside of iFrame, any setting from my app form won't be passed to Stripe Card Element.

So I'm wondering if I can add a meta tag or JS command to avoid trigger Chrome (and Safari) saved card details.

enter image description here

enter image description here

3rdSenna
  • 145
  • 12
  • This might be helpful: https://terrylinooo.github.io/jquery.disableAutoFill/ – JoshG Aug 29 '19 at 14:23
  • Possible duplicate of [Disabling Chrome Autofill](https://stackoverflow.com/questions/15738259/disabling-chrome-autofill) – Heretic Monkey Aug 29 '19 at 14:27
  • See also [Prevent chrome from autofilling creditcard info](https://stackoverflow.com/q/39937170/215552) – Heretic Monkey Aug 29 '19 at 14:28
  • 1
    Thanks for those suggestion, But I don't think I'm duplicating a query. I'm not looking for a ""> I'm looking for a generic way that disable the browser option to display the cards in any input, including the iFramed inputs. – 3rdSenna Aug 29 '19 at 14:37

1 Answers1

-2

You could turn off the auto-filling in the chrome settings. Tested and it is working for me

enter image description here

wsw
  • 676
  • 6
  • 9
  • Thanks for suggesting it, but I can't ask to every user of my app to turn off "Save and fill payment methods" only when they navigate to my app page. I need a solution that will be implemented by the Dev. – 3rdSenna Aug 30 '19 at 09:02