:password
The jQuery :password selector is used to select all type="password" elements.
type="password"
$( "input:password" ) is equivalent to $( "input[type=password]" ).
$( "input:password" )
$( "input[type=password]" )
$(':password')
In below example,We will hightlight all password inputs.
Try now