jQuery – show() Method
The show() method shows the selected hidden element. The shown item will now take up space on the page, affecting the layout.
The show() method shows the selected hidden element. The shown item will now take up space on the page, affecting the layout.
The siblings() method returns all sibling elements of the selected element.
The slideDown() method slides down and shows the selected element. It works on elements hidden with jQuery methods and those with display: none in CSS.
The slideToggle() method toggles between the slideUp() and slideDown() methods by sliding down a hidden element and sliding up a visible element.
The slideUp() method slides up and hides the selected element. The hidden item will no longer take up space on the page, affecting the layout.
The stop() method stops the currently running animation for the selected element.
The text() method sets the text content of the selected elements, overwriting the content of ALL matched elements.
The toArray() method returns the elements matched by the jQuery selector as an array.
The toggle() method toggles between hide() and show() by showing a hidden element and hiding a visible element.
The toggleClass() method toggles between adding and removing one or more class names from the selected elements.
The trigger() method triggers a specified event and the default behavior of an event for the selected elements.
The triggerHandler() method triggers a specified event for the selected element. The default behavior is not executed.
The width() method sets the width of the selected elements, not including padding, border, or margin.
The wrap() method wraps specified HTML element(s) around EACH selected element separately. Every selected element will be wrapped on its own.
The wrapAll() method wraps specified HTML element(s) around all selected elements as a whole.
The wrapInner() method wraps specified HTML element(s) around the CONTENT (innerHTML) of each selected element.