HTML/CSS - Input [Text] How to disable the browser from offering suggestings in the Dropdown?

I'm building an autosuggest search, like apple's spotlight... and want to disable the browser from offering text suggestions under the input box. I can't remember if that's an html or css setting and can't find it.

Anyone remember?


Solution 1:

The attribute:

<form autocomplete="off">

is, I think, what you're looking for.

Solution 2:

html attribute:

autocomplete="off"