Suppress autocorrect on HTML input Safari iOS

100 Views Asked by At

I have this search input but no matter which of these attributes I add, or whether it's off or false I still get the autocorrect bubble on Safari. type="search" doesn't help either, nor does taking the input outside of the form.

    <input
      type="search"
      autocapitalize="off"
      autocorrect="off"
      spellcheck="false"
    />

enter image description here

0

There are 0 best solutions below