Baseline Widely available
The value
property of the HTMLTextAreaElement
interface represents the value of the <textarea>
element as a string, which is an empty string if the widget contains no content. It returns or sets the raw value contained in the control.
A string containing the contents of the <textarea>
element.
const textareaElement = document.getElementById("comment");
const oldText = textArea.value;
textArea.value = oldText.toUpperCase();
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4