ZetCode

JavaScript select() Method

last modified April 2, 2025

In this article, we explore the select() method in JavaScript. This method is used to select all text content in an input or textarea element. It's particularly useful for improving user experience in forms.

Basic Definition

The select() method selects all the text in an <input> or <textarea> element. This includes input elements with types like text, password, search, url, tel, and email.

When called, this method highlights all text in the target element, making it easy for users to replace or copy the content. It's often used in combination with focus to direct user attention.

Basic select() Example

This example demonstrates how to select text in an input field when a button is clicked.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Basic select()</title>
</head>
<body>

<input type="text" id="myInput" value="Select this text">
<button onclick="selectText()">Select Text</button>

<script>
    function selectText() {
        const input = document.getElementById('myInput');
        input.select();
    }
</script>

</body>
</html>

In this basic example, we have an input field with some text and a button. When the button is clicked, the selectText() function is called.

The function gets the input element using getElementById and then calls the select() method on it. This highlights all text in the input field, making it ready for user action.

Select on Focus

This example shows how to automatically select text when an input field receives focus.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Select on Focus</title>
</head>
<body>

<input type="text" id="autoSelect" value="Click here to select all">

<script>
    const input = document.getElementById('autoSelect');
    input.addEventListener('focus', function() {
        this.select();
    });
</script>

</body>
</html>

Here we have a single input field. We add an event listener for the focus event, which triggers when the user clicks or tabs into the field.

When the focus event occurs, the select() method is called on the input element, automatically selecting all its text. This pattern is common in search fields or URL inputs.

Select with Focus

This example demonstrates selecting text while also focusing the element.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Select with Focus</title>
</head>
<body>

<input type="text" id="focusInput" value="Try the button below">
<button onclick="focusAndSelect()">Focus and Select</button>

<script>
    function focusAndSelect() {
        const input = document.getElementById('focusInput');
        input.focus();
        input.select();
    }
</script>

</body>
</html>

In this example, we combine the focus() and select() methods. The button triggers both actions when clicked.

First, focus() brings the input into focus, then select() highlights all text. This is useful when you want to draw attention to a specific field and make its content easily editable.

Textarea Selection

This example shows how to use select() with a textarea element.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Textarea Selection</title>
</head>
<body>

<textarea id="myTextarea" rows="4" cols="50">
This is some sample text in a textarea element.
Try clicking the button to select all this text.
</textarea>
<button onclick="selectTextarea()">Select Textarea</button>

<script>
    function selectTextarea() {
        const textarea = document.getElementById('myTextarea');
        textarea.select();
    }
</script>

</body>
</html>

Here we demonstrate that select() works with textarea elements just as it does with input elements. The button triggers the selection of all text.

This can be particularly useful in forms where users might want to copy large blocks of text or replace all content with a single action.

Copy to Clipboard

This example combines select() with the Clipboard API to create a copy button.

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Copy to Clipboard</title>
</head>
<body>

<input type="text" id="copyInput" value="Text to be copied">
<button onclick="copyToClipboard()">Copy Text</button>
<p id="copyStatus"></p>

<script>
    function copyToClipboard() {
        const input = document.getElementById('copyInput');
        input.select();
        
        try {
            document.execCommand('copy');
            document.getElementById('copyStatus').textContent = 'Copied!';
        } catch (err) {
            document.getElementById('copyStatus').textContent = 'Failed to copy';
        }
    }
</script>

</body>
</html>

In this example, we first select the input text using select(), then use document.execCommand('copy') to copy it to clipboard.

While modern browsers support the Clipboard API, this approach works in older browsers too. The status message provides feedback about the operation's success.

Source

MDN select() Documentation

In this article, we have shown how to use the select() method in JavaScript. This method is valuable for improving form interactions and text handling in web applications.

Author

My name is Jan Bodnar, and I am a passionate programmer with extensive programming experience. I have been writing programming articles since 2007. To date, I have authored over 1,400 articles and 8 e-books. I possess more than ten years of experience in teaching programming.

List all JS DOM tutorials.