jQuery Slide Down Slow
jQuery Slide Down slow Creates slow sliding effects in the elements.
Syntax of jQuery Slide Down Slow
$(selector).slideDown(speed,callback);
jQuery Slide Down Slow Example
<script type="text/javascript"> $(document).ready(function(){ $("#slide").click(function(){ $("#demoDiv").slideDown("slow"); }); }); </script> |
Advertisements