Open In App

HTML | DOM Textarea autocomplete Property

Last Updated : 20 Sep, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The textarea autocomplete property in HTML DOM is used to set or return the value of the autocomplete attribute of a textarea field. The autocomplete attribute is used to specify whether the autocomplete attribute has “on” or “off” value. When the autocomplete attribute is set to on, the browser will automatically complete the values based on which the user entered before. 

Syntax: 

  • It returns the textarea autocomplete property.
TextareaObject.autocomplete
  • It is used to set the textarea autocomplete property.
TextareaObject.autocomplete = "on|off" 

Property Values: It contains two values which are listed below:

  • on: It is the default value. It automatically completes the values.
  • off: It defines that the user should fill the values of the Textarea field. It does not automatically complete the values.

Return Value: It returns a string value that represents the state of autocomplete. 

Example 1: This example illustrates how to return textarea autocomplete property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Textarea autocomplete Property
    </title>
</head>
 
<body style="text-align:center">
    <h1 style="color: green;">
        GeeksforGeeks e
    </h1>
    <h2>DOM Textarea autocomplete Property</h2>
     
    <!-- Assigning id to textarea. -->
    <textarea id="myGeeks" autocomplete = "on">
        GeeksForGeeks. A computer
        science portal for Geeks.
    </textarea>
    <br><br>
     
    <button onclick="Geeks()">Submit</button>
    <p id="sudo"></p>
    <script>
        function Geeks() {
             
            // Return Textarea autocompleter property
            var x =
            document.getElementById("myGeeks").autocomplete;
             
            document.getElementById("sudo").innerHTML = x;
        }
    </script>
</body>
 
</html>


Output: 

Before Clicking the Button:

  

After Clicking the Button:

  

Example 2: This example illustrates how to set textarea autocomplete property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Textarea autocomplete Property
    </title>
</head>
 
<body style="text-align:center">
    <h1 style="color: green;">
        GeeksforGeeks e
    </h1>
    <h2>DOM Textarea autocomplete Property</h2>
     
    <!-- Assigning id to textarea. -->
    <textarea id="myGeeks" autocomplete = "on">
        GeeksForGeeks. A computer
        science portal for Geeks.
    </textarea>
    <br><br>
 
    <button onclick="Geeks()">Submit</button>
    <p id="sudo"></p>
    <script>
        function Geeks() {
             
            // Set Textarea autocomplete Property
            var x = document.getElementById(
                    "myGeeks").autocomplete = "off";
             
            document.getElementById("sudo").innerHTML
                    = x;
        }
    </script>
</body>
 
</html>


Output: 

Before Clicking the Button:

  

After Clicking the Button: 

 

Supported Browsers: The browsers supported by HTML DOM textarea autocomplete property are listed below:

  • Google Chrome 66 and above
  • Firefox 59 and above
  • Apple Safari


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads