
jQuery :password selector
The jQuery provides several built-in selectors, and one of them is the :input
selector, which can be used to select all input elements, including password fields. Once you select all input elements, you can further filter the selection to specifically target password input fields using their type
attribute.
Here’s an example of how to select all password input fields using the :input
and :password
selectors:
HTML:
<!DOCTYPE html>
<html>
<head>
<title>jQuery :password Selector Example</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<form>
<input type="text" name="username" placeholder="Username">
<input type="password" name="password" placeholder="Password">
<input type="email" name="email" placeholder="Email">
<button type="submit">Submit</button>
</form>
<script>
$(document).ready(function() {
// Select all password input fields using the :input selector and the type attribute
var passwordInputs = $("input:password");
// Add a red border to all password input fields for demonstration purposes
passwordInputs.css("border", "2px solid red");
});
</script>
</body>
</html>
In this example, we have a form with three input elements, including a password input field. We use the :password
selector in combination with the :input
selector to select all password input fields and then add a red border to them for demonstration purposes.
Please note that while :password
is not an official jQuery selector, you can use :input
and the type
attribute to effectively target password input fields in your jQuery code.