Textarea select() Method
Example
Select the contents of a text area:
document.getElementById("myTextarea").select();
Try it yourself »
Definition and Usage
The select() method selects the entire contents of a text area.
Browser Support
The select() method is supported in all major browsers.
Syntax
textareaObject.select()
Parameters
None. |
Return Value
No return value. |
Textarea Object