Get form password field : Form Controls « jQuery « JavaScript DHTML






Get form password field

    

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
        var input = $("input:password");
        $("div").text(input.length);

        
        
    });
    </script>
  </head>
  <body>
     <form>
      <input type="password" />
    </form>
     <div></div>
  </body>
</html>

   
    
    
    
  








Related examples in the same category

1.Get form image control
2.Get hidden form fields
3.Set value to disabled form field
4.Query submit button
5.Query reset from form
6.Query form file input field
7.To trigger the select event on all input elements
8.Clicking the button enables the input next to it.
9.Build a list of all the values within a form.
10.Hides all the input elements within a form.