

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to disable autocomplete of an HTML input field?
To disable autocomplete of an input field, the code is as follows −
Example
<!DOCTYPE html> <html> <head> <style> input{ font-size: 18px; padding: 10px; margin: 10px; border:1px solid grey; } </style> </head> <body> <h1>Autocomplete on/off Example</h1> <form> First name: <input type="text" name="firstName" autocomplete="off"><br> Last name: <input type="text" name="lastName" autocomplete="on"><br> <input type="submit"> </form> <h2>Type in the above fields and refresh page to see autocomplete at work</h2> </body> </html>
Output
The above code will produce the following output −
On typing something in the above fields after submitting the form one time −
- Related Questions & Answers
- HTML <input> autocomplete Attribute
- HTML DOM Input URL autocomplete Property
- HTML DOM Input Email autocomplete Property
- HTML DOM Input Text autocomplete Property
- HTML DOM Input Search autocomplete Property
- How to include an input field in HTML?
- How to use input type field with date field in HTML?
- How to disable/enable an input box with jQuery?
- Autocomplete text input for HTML5?
- How to use autocomplete attribute in HTML?
- How to use input type field with steps in HTML?
- How to create an Autocomplete with JavaScript?
- How to give a limit to the input field in HTML?
- HTML DOM Form autocomplete Property
- How do we include the legal number intervals for an input field in HTML?
Advertisements