jQuery.ajax()
Perform an asynchronous HTTP (Ajax) request.
Perform an asynchronous HTTP (Ajax) request.
This page documents data types appearing in jQuery function signatures, whether defined by JavaScript itself or further restricted by jQuery. Unless explicitly stated otherwise, jQuery functions require primitive values where applicable, and do not accept their Object-wrapped forms. If you want to study these concepts in depth, take a look at MDN. You should be … Continue reading
Get the current value of the first element in the set of matched elements or set the value of every matched element.
Attach an event handler function for one or more events to the selected elements.
Get the value of an attribute for the first element in the set of matched elements or set one or more attributes for every matched element.
Perform a custom animation of a set of CSS properties.
Attach a handler to an event for the elements.
Send data to the server using a HTTP POST request.
Load data from the server using a HTTP GET request.
Ajax requests produce a number of different events that you can subscribe to. Here's a full list of the events and in what order they are triggered. There are two types of events: Local Events These are callbacks that you can subscribe to within the Ajax request object, like so: 1 2 3 4 5 … Continue reading
Get the value of a computed style property for the first element in the set of matched elements or set one or more CSS properties for every matched element.
Hide the matched elements.
Create a new jQuery object with elements added to the set of matched elements.
Store arbitrary data associated with the matched elements or return the value at the named data store for the first element in the set of matched elements.
Remove a previously-attached event handler from the elements.
Add handlers to be called when the Deferred object is either resolved or rejected.
Search for a given element from among the matched elements.
Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
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 arguments.