Open In App
Related Articles

HTML DOM Textarea select() Method

Improve Article
Improve
Save Article
Save
Like Article
Like

The select() method in HTML DOM is used to select the entire content of the text area or in a <input> element that includes a text field. 

Syntax:

textareaObject.select()

Parameters: This method does not accept any parameters. 

Return Value: It does not return any value. 

Example: In this example, we will see the use of the select() method

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        DOM Textarea select() Method
    </title>
</head>
   
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
    <h2>
        Textarea select() Method
    </h2>
    <textarea type="text" id="text">
          Welcome to GeeksforGeeks
    </textarea>
    <br>
    <button onclick="Geeks()">
        Select text
    </button>
    <script>
        function Geeks() {
            let doc = document.getElementById('text');
            doc.select();
        }
    </script>
</body>
</html>


Output: 

 

  Supported Browsers: The browser supported by the DOM textarea select() method are listed below:

  • Apple Safari 1
  • Google Chrome 1
  • Edge 12
  • Firefox 1
  • Opera 12.1
  • Internet Explorer 5
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 : 14 Jun, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials