<!DOCTYPE html>
<html>
<head>
<title>jQuery :image Selector</title>
<script src="jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$(":image").css('background-color', 'yellow');
});
</script>
</head>
<body>
<h1>Form Elements Selector</h1>
<form action="">
Name: <input type="text" name="name" /><br />
Password: <input type="password" name="password"/><br/>
<input type="image" src="../../images/img_nat.png" width="207" height="139"/>
<br />
<input type="button" value="Button">
<input type="reset" value="Reset">
<input type="submit" name="submit"/>
</form>
</body>
</html>