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