Recently when I’m working with inputs in React / Javascript and I click into the inputs to type stuff like address etc, Chrome opens up this strange context menu which is unwanted by me. Is there a way to disable this? I’ve tried turning autofill off in Chrome settings (Autofill and passwords) but it doesn’t help.
2
Answers
Using autocomplete="off"
<input type="text" name="address" autocomplete="off" />
Disable Autofill Using JavaScript
`
This is a really irritating feature that was enabled in Chrome, it now blocks the input fields from view and also no longer allows you to make a selection from a menu with the keyboard when DevTools is open. Why they did not provide a feature to disable it I don’t know.