As a web developer while designing pages, you may want to disable autocomplete in input fields, especially of HTML form elements. To turn of autocomplete in HTML field by adding autocomplete=off as an attribute,
<input type="text" id="myField" autocomplete="off" />
If you want to turn off autocomplete for all the elements in the form you can add autocomplete off option on the form element itself as shown in below example,
HTML Code Example:<!DOCTYPE html>
<html>
<body>
<form action="/loginpage.php" autocomplete="off">
<label for="uname">Username</label>
<input type="text" id="uname"><br><br>
<label for="pass">Password:</label>
<input type="text" id="pass"><br><br><br>
<input type="submit">
</form>
</body>
</html>
Comments:
- Further comments disabled!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
