Slide down and set focus : slideDown « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
                
               $("div").click(function () {
                 
                  $("input").slideDown(1000,function(){
                     $(this).focus();
        
                  });
               });

        });
    </script>
    <style>
      input { display:none;margin:10px; }
    </style>
  </head>
  <body>
    <body>
          <div>Click me</div>
          <input type="text" />
          <input type="text"/>
          <input type="text" />

    </body>
</html>








30.99.slideDown
30.99.1.Hide and Slide down
30.99.2.Slide down and set focus
30.99.3.Slide down fast
30.99.4.Slide down form fields
30.99.5.Slide down in milliseconds
30.99.6.Slide down slowly
30.99.7.Slide to show para
30.99.8.slideDown(speed, callback): Only the height is adjusted for this animation