jQuery – add() Method
The add() method adds elements to an existing group of elements in the whole document, or just inside context elements if specified.
The add() method adds elements to an existing group of elements in the whole document, or just inside context elements if specified.
The addClass() method adds one or more class names to the selected elements.
The .ajax() method is used to perform an AJAX (asynchronous HTTP) request, and is mostly used for requests where the other methods cannot be used.
The after() method inserts specified content (HTML tags, jQuery objects, DOM elements) after the selected elements.
The ajaxComplete() method specifies a function to be run when an AJAX request completes.
The ajaxError() method specifies a function to be run when an AJAX request fails, and should only be attached to the document.
The ajaxStart() method specifies a function to be run when an AJAX request starts.
The ajaxSend() method specifies a function to run when an AJAX requests is about to be sent., and should only be attached to the document.
The ajaxStop() method specifies a function to run when ALL AJAX requests have completed.
The ajaxSuccess() method specifies a function to be run when an AJAX request is successfully completed, and should only be attached to the document.
The animate() method performs a custom animation on an HTML element, changing one CSS property value to another gradually, creating an animated effect.
The append() method inserts specified content (HTML tags, jQuery objects, DOM elements) at the end of the selected elements.
The appendTo() method inserts HTML elements at the end of the selected element or elements.
The blur event occurs when an HTML element (usually a form field) loses focus.
The before() method inserts specified content (HTML tags, jQuery objects, DOM elements) before the selected elements.
The children() method returns all direct children of the selected element.