This tag applies to questions about any of the jQuery AJAX methods:
$.ajax(): Perform an asynchronous HTTP (Ajax) request.$.get(): Load data from the server using a HTTP GET request.$.getScript(): Load a JavaScript file from the server using a GET HTTP request, then execute it.$.post(): Load data from the server using a HTTP POST request.$.getJSON(): Load JSON-encoded data from the server using a GET HTTP request.$.load(): Load data from the server and place the returned HTML into the matched element.
For reference, see also:
