:image Selector - Javascript jQuery Selector

Javascript examples for jQuery Selector:image

Description

The :image selector selects input elements with type=image.

The following code shows how to select <input> elements with type="image":

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $(":image").css("background-color", "blue");
});/*from   ww w.  j av  a 2s. c  om*/
</script>
</head>
<body>

<form action="">
  Name: <input type="text" name="user"><br>
  Password: <input type="password" name="password"><br>
  Compatible: <input type="image" src="http://java2s.com/resources/a.png" width="31" height="30">
</form>

</body>
</html>

Related Tutorials