AJAX

.hLoadData (Mode1 Property)

The ".hLoadData" property can be used to send key/value pairs to the server.

.hLoad() (Mode1 Handler)

The "hLoad()" callback is immediately processed after the get/post request.

.content (Mode2-6 Property)

The ".content" property specifies the content to be rendered.

.hGetData (Mode2 Property)

The "hGetData" property can be used to send key/value pairs to the server during a get request.

.hGetType (Mode2 Property)

The "hGetType" property identifies the return Data Type of the get request.

.hGet() (Mode2 Handler)

The "hGet()" callback is immediately processed after the get request.

.hJSONData (Mode3 Property)

The "hJSONData" property can be used to send key/value pairs to the server during a get request.

.hJSON() (Mode3 Handler)

The "hJSON()" callback is immediately processed after the get request.

.hScript() (Mode4 Handler)

The "hScript()" callback is immediately processed after the get request.

.hPostData (Mode5 Property)

The "hPostData" property can be used to send key/value pairs to the server during a post request.

.hPostType (Mode5 Property)

The "hPostType" property identifies the return Data Type of the post request.

.hPost() (Mode5 Handler)

The "hPost()" callback is immediately processed after the post request.

.ajaxOptions (Mode6 Property)

The "ajaxOptions" property can be used to configure an AJAX request.

.hBeforeSend() (Mode6 Handler)

The "hBeforeSend()" callback is immediately executed before the AJAX request is initiated.

.hSuccess() (Mode6 Handler)

The "hSuccess()" callback is immediately executed after the AJAX request is processed.

.hComplete() (Mode6 Handler)

The "hComplete()" callback is immediately executed after the AJAX request has completed.

.hError() (Mode6 Handler)

The "hError()" callback is executed when an error is thrown during an AJAX request.

.request (Mode2-6 Property)

The ".request" property contains the last XMLHttpRequest object returned by an AJAX request.

$A.load()

"$A.load()" is a shorthand method for pulling content from an external resource and injecting it into a container element.

$A.get()

"$A.get()" is a shorthand method for pulling content from an external resource and executing a callback.

$A.getJSON()

"$A.getJSON()" is a shorthand method for pulling JSON data from an external resource and executing a callback.

$A.getScript()

"$A.getScript()" is a shorthand method for pulling external JavaScript into the DOM and executing it.

$A.post()

"$A.post()" is a shorthand method for posting data to a server and returning a callback.

$A.ajax()

"$A.ajax()" is a shorthand method for executing an AJAX request and returning a callback.