show()
method shows the HTML elements of the document and jQuery hide()
method hides the HTML elements of the document. slow
", "normal
", "fast
"). Otherwise, number represented by milliseconds can also be given.(Ex: 5000).fadeIn()
: To fade in a hidden element fadeIn method is used.
fadeOut()
: To fade out the visible elements fadeout method is used.
fadeToggle()
: If HTML element are hidden jQuery fadeToggle method is used to fade in a hidden element. slow
", "normal
", "fast
") or else one can give value represented as milliseconds (Ex. 5000).slideUp()
: This method is used to hide the selected elements with a sliding motion.
slideDown()
: This method displays the elements that are selected with a sliding motion.
slideToggle()
: If HTML elements are hidden slideToggle() method displays the selected elements with a sliding motion or HTML elements displays slideToggle() method to hide the selected elements with a sliding motion. In other words, slideToggle() method toggles between slideUp and slideDown methods. slow
", "normal
", "fast
") or else one can give value represented by milliseconds (Ex. 5000).animate()
method of jQuery is used to apply custom animations. CSS properties can be used to create their own animations. slow
", "normal
", "fast
").Otherwise, one can give number represented by milliseconds (Ex. 5000).