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