howw to get rid of browser suggestions on html input field code example
Example 1: input without autocomplete
<input type="text" name="foo" autocomplete="off" />
Example 2: input disable autocomplete
autocomplete="off"
<input type="text" name="foo" autocomplete="off" />
autocomplete="off"