The real power of jQuery comes from its capability to chain functions together. Imagine that you want to fade your <div> in and out a number of times. You can easily accomplish this procedure with the following code:
$("#div1").fadeOut().fadeIn().fadeOut().fadeIn().fadeOut();
3.135.192.141