jQuery :password Selector


The :password selector in jQuery is used to select input elements with type password.

Syntax

The syntax is as follows −

$(":password")

Example

Let us now see an example to implement the jQuery :password selector −

<!DOCTYPE html>
<html>
<head>
<style>
   .one {
      background-color: blue;
      color: white;
      font-size: 18px;
      border: 2px blue dashed;
   }
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
   $(document).ready(function(){
      $(":password").addClass("one");
   });
</script>
</head>
<body>
<h2>Login</h2>
<form action="">
Username: <input type="text" name="user"><br>
Password: <input type="password" name="password"><br>
<button type="button">Submit</button>
</form>
</body>
</html>

Output

This will produce the following output −

Updated on: 05-Nov-2019

64 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements