JQuery JavaScript Tutorial

< html>
  
    
    
    $(document).ready(function(){
        var input = $("form input:text");
        $("div").text("For this type jQuery found " + input.length + ".");
        
    });