Open In App

HTML DOM Textarea disabled Property

The DOM Textarea disabled Property is used to set or return whether the textarea element would be disabled or not. A disabled text area is un-clickable and unusable. It is a boolean attribute and is used to reflect the HTML Disabled attribute. 

Syntax: 



textareaObject.disabled
textareaObject.disabled = true|false

Property Values: 

Return Value: It returns a boolean value that represents whether the text area is disabled or not. 



Example-1: This example illustrates how to set the Textarea disabled property




<!DOCTYPE html>
<html>
 
<head>
    <title>DOM textarea disabled Property</title>
</head>
 
<body style="text-align:center">
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
    <h2>DOM textarea disabled Property</h2>
    <p>This text area is non editable.</p>
    <!-- Assigning id to textarea. -->
    <textarea id="GFG" disabled>
        This textarea field is disabled.
    </textarea>
    <br>
    <button onclick="myGeeks()">
      Submit
    </button>
    <script>
        function myGeeks() {
            // sets the textarea disabled property.
            document.getElementById(
                "GFG").disabled = false;
        }
    </script>
</body>
 
</html>

Output: 

 

Example-2: This example illustrates how to return the Textarea Disabled property




<!DOCTYPE html>
<html>
 
<head>
    <title>DOM textarea disabled Property</title>
</head>
 
<body style="text-align:center">
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
    <h2>DOM textarea disabled Property</h2>
    <p>This text area is non editable.</p>
    <!-- Assigning id to textarea. -->
    <textarea id="GFG" disabled>This textarea
         field is disabled.
    </textarea>
    <br>
    <button onclick="myGeeks()">
        Submit
    </button>
    <p id="sudo"></p>
    <script>
        function myGeeks() {
            // Return Textarea disabled Property
            let x = document.getElementById(
                "GFG").disabled;
            document.getElementById(
                "sudo").innerHTML = x;
        }
    </script>
</body>
 
</html>

Output: 

 

Supported Browsers: The browser supported by Textarea Disabled Property are listed below:


Article Tags :