jQuery Slide Down Fast


jQuery Slide Down fast Creates fast sliding effects in the elements. For adding fast sliding effect only first parameter is requires as “fast”;

jQuery slide down slides down the elements with fast sliding effect.


Syntax of jQuery Slide Down fast

$(selector).slideDown(speed,callback);

jQuery Slide Down Slow Example


<script type="text/javascript">
         $(document).ready(function(){
          $("#slide").click(function(){
           $("#demoDiv").slideDown("fast");
          });
          });
</script>    

Try it »

Output :

jQuery Slide Down Fast

jQuery Slide Down Fast


Advertisements

Add Comment

📖 Read More