Fast slide toggle animation in jQuery

Description

The following code shows how to fast slide toggle animation.

Example


<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {<!--from  ww  w  .j a  v  a  2 s  . c om-->
    $("button").click(function() {
      $(this).slideToggle("fast");
    });
  });
</script>
</head>
<body>
  <div>
    Click me
    <button>button</button>
  </div>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities