Need Assistance?

support@tutorialshub.in

jQuery Effects and Animations

show() Method

ADVERTISEMENT
jQuery Free Lesson
5 min read
ADVERTISEMENT

The show() method is used to display hidden HTML elements.

It works together with the hide() method.

If an element is hidden using hide(), it can be shown again using show().

This displays the hidden element instantly.

This shows the element with animation over 600 milliseconds.

Predefined speed values like fast and slow can also be used.

show() Method Notes:

  • Displays hidden elements
  • Accepts speed parameter
  • Used with hide() method
  • Common in toggle UI elements
ADVERTISEMENT