HTML | DOM Input Password select() Method

The Input Password select() Method in HTML DOM is used in selecting the content of the password field

Syntax:

passwordObject.select()

Parameters: It does not accepts any parameter. 

Return Value: It does not return any value. 

Example: This example uses Input Password select() Method to select password. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Password select() Method
    </title>
</head>
<body>
    Enter Username:
    <input type="text"
           value="usename">
    <br>
    <br> Enter Password:
    <input type="password"
           value="Beginner"
           id="passwd">
    <br>
    <br>
    <button onclick="myBeginner()">
      Click Here!
      </button>
    <script>
        function myBeginner() {
            document.getElementById(
              "passwd").select();
        }
    </script>
</body>
</html>


Output: 

Before Click on button:

  

After Click on button:

  

Supported Browsers: The browser supported by Input Password select() Method are listed below:

  • Google Chrome 1+
  • Edge 12+
  • Firefox 1+
  • Safari 1+
  • Opera 2+

Contact Us