The jQuery library has a full suite of AJAX capabilities. The functions and methods therein allow us to load data from the server without a browser page refresh.
-
jQuery.ajax()
Low-Level InterfacePerform an asynchronous HTTP (Ajax) request. -
.ajaxComplete()
Global Ajax Event HandlersRegister a handler to be called when Ajax requests complete. This is an Ajax Event. -
.ajaxError()
Global Ajax Event HandlersRegister a handler to be called when Ajax requests complete with an error. This is an Ajax Event. -
.ajaxSend()
Global Ajax Event HandlersShow a message before an Ajax request is sent. -
jQuery.ajaxSetup()
Low-Level InterfaceSet default values for future Ajax requests. -
.ajaxStart()
Global Ajax Event HandlersRegister a handler to be called when the first Ajax request begins. This is an Ajax Event. -
.ajaxStop()
Global Ajax Event HandlersHide a loading message after all the Ajax requests have stopped. -
.ajaxSuccess()
Global Ajax Event HandlersShow a message when an Ajax request completes successfully. -
jQuery.get()
Shorthand MethodsLoad data from the server using a HTTP GET request. -
jQuery.getJSON()
Shorthand MethodsLoad JSON-encoded data from the server using a GET HTTP request. -
jQuery.getScript()
Shorthand MethodsLoad a JavaScript file from the server using a GET HTTP request, then execute it. -
.load()
Shorthand MethodsLoad data from the server and place the returned HTML into the matched element. -
jQuery.param()
Collection Manipulation, Forms, Helper FunctionsCreate a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. -
jQuery.post()
Shorthand MethodsLoad data from the server using a HTTP POST request. -
.serialize()
Forms, Helper FunctionsEncode a set of form elements as a string for submission. -
.serializeArray()
Forms, Helper FunctionsEncode a set of form elements as an array of names and values.
Share your views...
0 Respones to "Ajax Capabilities"
Post a Comment