jQuery – children() Method
The children() method returns all direct children of the selected element.
The children() method returns all direct children of the selected element.
The clearQueue() method removes all items from the queue that have not yet started to run. If started, they will run to completion.
The clone() method makes a copy of selected elements, including child nodes, text and attributes.
The contents() method returns all direct children, including text and comment nodes, of the selected element.
The delay() method sets a timer to delay the execution of the next item in the queue.
The dequeue() method removes the next function from the queue and executes the function, allowing the remaining items in the queue() to continue.
The detach() method removes the selected elements, including all text and child nodes, but keeps data and events.
The empty() method removes all child nodes and content from the selected elements, but does NOT remove the element itself or its attributes.
The eq() method returns an element with a specific index number of the selected elements. 0 for element 1, 1 for element 2, 2, for element 3, etc.
The event.currentTarget property is the current DOM element within the event bubbling phase, and is typically equal to “this”.
The event.data property contains the optional data passed to an event method when the current executing handler is bound.
The event.delegateTarget property returns the element where the currently-called jQuery event handler is attached.
The event.isDefaultPrevented() method checks whether the preventDefault() method was called for the event.
The event.isImmediatePropagationStopped() method checks whether the event.stopImmediatePropagation() was called for the event.