Open In App

HTML | DOM Input Password select() Method

Last Updated : 25 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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="geeks"
           id="passwd">
    <br>
    <br>
    <button onclick="myGeeks()">
      Click Here!
      </button>
    <script>
        function myGeeks() {
            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+

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads