.ready()
  • References/JavaScript/jQuery/Events

Specify a function to execute when the DOM is fully loaded. While JavaScript provides the load

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

Parses a string into an XML document. jQuery.parseXML uses the native parsing function

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

Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. Prior

2025-01-10 15:47:30
Descendant selector (“ancestor descendant”)
  • References/JavaScript/jQuery/Selectors

Selects all elements that are descendants of a given ancestor. A descendant of an element could

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

Get the siblings of each element in the set of matched elements, optionally filtered by a selector. Given

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

Bind an event handler to the "focus" JavaScript event, or trigger that event on an element. This

2025-01-10 15:47:30
.selector
  • References/JavaScript/jQuery/Miscellaneous

A selector representing selector passed to jQuery(), if any, when creating the original set. The

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

Load data from the server using a HTTP POST request. This is a shorthand Ajax function, which is

2025-01-10 15:47:30
Attribute ends with selector [name$=”value”]
  • References/JavaScript/jQuery/Selectors

Selects elements that have the specified attribute with a value ending exactly with a given string. The comparison is case sensitive.

2025-01-10 15:47:30
Attribute equals selector [name=”value”]
  • References/JavaScript/jQuery/Selectors

Selects elements that have the specified attribute with a value exactly equal to a certain value.

2025-01-10 15:47:30