Search code examples
javascripthtmlautocompleteautosuggest

How do you turn off browser suggestions on html input


How do you turn this off browser suggestions on html input?


Solution

  • Just use autocomplete on your inputs:

    autocomplete="off"
    

    Something like:

    <input type="text" autocomplete="off">
    

    You can always switch back to autocomplete="on" when required.