jQuery.isXMLDoc()
  • References/JavaScript/jQuery/Utilities

Check to see if a DOM node is within an XML document (or is an XML document).

2025-01-10 15:47:30
:hidden selector
  • References/JavaScript/jQuery/Selectors

Selects all elements that are hidden. Elements can be considered hidden for several reasons:

2025-01-10 15:47:30
deferred.done()
  • References/JavaScript/jQuery/Deferred Object

Add handlers to be called when the Deferred object is resolved. The deferred.done()

2025-01-10 15:47:30
.on()
  • References/JavaScript/jQuery/Events

Attach an event handler function for one or more events to the selected elements. The .on()

2025-01-10 15:47:30
.is()
  • References/JavaScript/jQuery/Traversing

Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given

2025-01-10 15:47:30
:parent selector
  • References/JavaScript/jQuery/Selectors

Select all elements that have at least one child node (either an element or text). This is the inverse

2025-01-10 15:47:30
.appendTo()
  • References/JavaScript/jQuery/Manipulation

Insert every element in the set of matched elements to the end of the target. The

2025-01-10 15:47:30
jQuery.holdReady()
  • References/JavaScript/jQuery/Miscellaneous

Holds or releases the execution of jQuery's ready event. The $.holdReady() method allows

2025-01-10 15:47:30
.replaceWith()
  • References/JavaScript/jQuery/Manipulation

Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.

2025-01-10 15:47:30
:first selector
  • References/JavaScript/jQuery/Selectors

Selects the first matched element. The :first pseudo-class is equivalent to :eq(

2025-01-10 15:47:30