Open In App
Related Articles

HTML <textarea> disabled Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The disabled attribute for <textarea> element in HTML is used to specify that the text area element is disabled. A disabled text area is un-clickable and unusable. It is a boolean attribute. 

Syntax:

<textarea disabled>text content...</textarea>

Example: 

html




<!DOCTYPE html>
<html>
    <head>
        <title>HTML textarea disabled Attribute</title>
    </head>
    <body style = "text-align:center">   
        <h1 style = "color: green;">GeeksforGeeks</h1>
        <h2>HTML textarea disabled Attribute</h2>
 
        <p>This text area is non editable.</p>
 
        <!--A disabled textarea-->
        <textarea disabled>
            This textarea field is disabled.
        </textarea>
    </body>
</html>   


Output:

 disabledtextarea 

Supported Browsers: The browser supported by <textarea> disabled attribute are listed below:

  • Apple Safari 4
  • Google Chrome 1
  • Edge 12
  • Firefox 1
  • Opera 12.1
  • Internet Explorer 6
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 22 Jul, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials