0

When I type in an input box, my chrome browser automatically provides suggestions based on whatever I typed in this input box before. How can I disable the browser suggestion?

enter image description here

this is the HTML code:

<input type="text" class="form-control" name="firstName" formControlName="addUserFirstName" tabindex="2" autocomplete="off" />
vinuta
  • 423
  • 9
  • 29

1 Answers1

0

autocomplete will solve your issue

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

for more info check here, and check these MDN WebDocs

Ganesh
  • 5,808
  • 2
  • 21
  • 41