HTML <textarea> with autocomplete Attribute

You are Here:

HTML <textarea> with autocomplete Attribute

The autocomplete attribute specifies whether the value of the <textarea> element can be automatically completed by the browser.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <form action="/user-name.php"> <textarea name="name" autocomplete="on" col="30" rows="4" placeholder="Name,please?"> </textarea> <input type="submit" value="Submit"> </form> </body> </html>

Attribute Value

ValueExplanation
onThe browser is allowed to automatically complete the value based on values that the user has entered during previous uses. Default.
offEverytime the user needs to enter a value into the <textarea> field explicitly.

Reminder

Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in HTML.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author