
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
HTML DOM Textarea disabled Property
The HTML DOM Textarea disabled property returns and modify whether the text area element in an HTML document is disabled or not.
Syntax
Following is the syntax −
1. Returning disabled
object.disabled
2. Adding disabled
object.disabled = true | false
Let us see an example of HTML DOM Textarea disabled Property:
Example
<!DOCTYPE html> <html> <style> body { color: #000; background: lightseagreen; height: 100vh; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; } </style> <body> <h1>DOM Textarea disabled Property Demo</h1> <textarea placeholder="Hi! I'm placeholder text of a textarea element" rows="8" cols='20'></textarea> <button onclick="set()" class="btn">Disable Textarea</button> <script> function set() { document.querySelector("textarea").disabled = true; } </script> </body> </html>
Output
Click on “Disable Textarea” button to disabled the textarea element.
- Related Articles
- HTML DOM Textarea cols Property
- HTML DOM Textarea rows Property
- HTML DOM Textarea placeholder Property
- HTML DOM Textarea defaultValue Property
- HTML DOM Textarea name Property
- HTML DOM Textarea readOnly Property
- HTML DOM Textarea wrap Property
- HTML DOM Textarea autofocus Property
- HTML DOM Textarea form Property
- HTML DOM Textarea required Property
- HTML DOM Textarea maxLength Property
- HTML DOM Link disabled Property
- HTML DOM Button disabled Property
- HTML DOM Fieldset disabled property
- HTML DOM Select disabled Property

Advertisements