jQuery.getScript()
  • References/JavaScript/jQuery/Ajax

Load a JavaScript file from the server using a GET HTTP request, then execute it. This is a shorthand

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

Insert content, specified by the parameter, to the end of each element in the set of matched elements. The

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

Remove the whitespace from the beginning and end of a string. The $.trim() function

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

Execute all handlers and behaviors attached to the matched elements for the given event type. Any

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

Reduce the set of matched elements to a subset specified by a range of indices. Given a jQuery object

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

Selects all elements that are headers, like h1, h2, h3 and so on. Because :header

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

Selects all button elements and elements of type button. An equivalent selector to $( ":button"

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

Merge the contents of two or more objects together into the first object. When two or more object

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

Load JSON-encoded data from the server using a GET HTTP request. This is a shorthand Ajax function

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

For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.

2025-01-10 15:47:30