Javascript examples for jQuery Selector:image
The :image selector selects input elements with type=image.
The following code shows how to select <input> elements with type="image":
<!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>