Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

jQuery AJAX method


May 07, 2021 jQuery


Table of contents


jQuery AJAX method

The jQuery library has a complete AJAX-compatible suite.


jQuery AJAX method

AJAX is a technique for exchanging data with servers to update part of a Web page with supplements throughout the page.

The following table lists all the jQuery AJAX methods:

method describe
$.ajax() Perform asynchronous AJAX request
$.ajaxPrefilter() Processing custom Ajax options or modify existing options before each request is sent before and is sent by $ .ajax ()
$.ajaxSetup() Set the default value for future AJAX requests
$.ajaxTransport() Create an object that handles Ajax data actually transmitted
$.get() Load data from server using Ajax's HTTP GET request
$.getJSON() Use the HTTP GET request to load JSON encoded from the server
$.getScript() Load and perform JavaScript using Ajax's HTTP GET request
$.param() Create a sequence representation of an array or object (URL query string available for Ajax request)
$.post() Use AJAX HTTP POST request to load data from server
ajaxComplete() Functions that specify the AJAX request to complete
ajaxError() Functions that specify the AJAX request failure
ajaxSend() Specifies a function running before the AJAX request is sent
ajaxStart() Functions that specify the first AJAX request start
ajaxStop() Functions that specify all AJAX requests to complete
ajaxSuccess() Functions that specify the AJAX request to successfully complete
load() Load data from the server and place the returned data into the specified element
serialize() Encoding form elements set to strings for commit
serializeArray() Coding form elements set for arrays of Names and VALUES

Related tutorials

AJAX tutorial