jQuery – fadeOut() Method
The fadeOut() method gradually changes, fades out, the opacity for the selected element from completely visible to completely hidden.
The fadeOut() method gradually changes, fades out, the opacity for the selected element from completely visible to completely hidden.
The fadeTo() method gradually changes the opacity for the selected element to a specified opacity, fading in or fading out the element.
The fadeToggle() method toggles between the fadeIn() and fadeOut() methods by fading in a faded-out element and fading out a faded-in element.
The filter() method returns elements that match a certain criteria. Elements that don’t match the criteria are removed from the selection.
The finish() method stops the currently-running animations, removes all queued animations, and completes all animations for the selected element.
The focus event occurs when an element gets focus when selected by a mouse click or by tabbing to it with the tab keyboard key.
The focusin event occurs when an element or any elements inside that element gets focus.
The focusout event occurs when an element or any elements inside that element loses focus.
The .getJSON() method is used to get JSON data using an AJAX HTTP GET request.
The .getScript() method is used to get and execute a JavaScript using an AJAX HTTP GET request.
The has() method returns all elements that have one or more elements inside of them, that matches the specified selector.
The hasClass() method checks if any of the selected elements have a specified class name, and returns “true” if any do.
The height() method sets the height of the selected elements, not including padding, border, or margin.
The hide() method hides the selected element. The hidden item will no longer take up space on the page, affecting the layout.
The hover() method specifies two functions to run when the mouse pointer hovers over the selected element, triggering the mouseenter and mouseleave events.