<html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ var input = $(":image"); $("div").text(input.length).css("color", "red"); }); </script> </head> <body> <form><input type="image" /></form> <DIV></DIV> </body> </html>