<title>jQuery :password Selector Selects All Input Type Password Elements</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
$(document).ready(function(){
$( ".mydforminput :password" ).css("background", "yellow");
<h2>jQuery :password Selector Selects All Input Type Password Elements</h2>
<form action="#" class="mydforminput">
<input type="text" name="username" placeholder="Enter your username"><br><br>
<input type="password" name="password" placeholder="Enter your password"><br><br>
<button type="button" name="submit">Submit</button>