jQuery fadeOut slow


jQuery fadeOut slow adds slow transition to visible elements.


Syntax of jQuery fadeOut Slow

$(selector).fadeOut ("slow");

jQuery fadeOut Slow Example


<script type="text/javascript">
         $(document).ready(function(){
          $("#fadeInbutton").click(function(){
           $("#demoDiv").fadeOut("slow");
          });
          });
</script>    

Try it »


Advertisements

Add Comment

📖 Read More