JQuery Ajax Operation functions
The JQuery Library has a complete Ajax compatibility suite. The functions and methods allow us to load data from the server without refreshing the browser.
| function |
Description |
| Jquery.ajax () |
Executes an asynchronous HTTP (Ajax) request. |
| . Ajaxcomplete () |
Registers the handler to invoke when the Ajax request is complete. This is an Ajax event. |
| . Ajaxerror () |
Registers the handler to invoke when the Ajax request is complete and an error occurs. This is an Ajax event. |
| . Ajaxsend () |
Displays a message before the Ajax request is sent. |
| Jquery.ajaxsetup () |
Sets the default value for future Ajax requests. |
| . Ajaxstart () |
Registers the handler to invoke when the first Ajax request finishes. This is an Ajax event. |
| . Ajaxstop () |
Registers the handler to invoke when all Ajax requests are completed. This is an Ajax event. |
| . Ajaxsuccess () |
Displays a message when the Ajax request completes successfully. |
| Jquery.get () |
Use an HTTP GET request to load data from the server. |
| Jquery.getjson () |
Loads JSON-encoded data from the server using an HTTP GET request. |
| Jquery.getscript () |
Use an HTTP GET request to load a JavaScript file from the server, and then execute the file. |
| . Load () |
Load the data from the server and put the matching elements back into the HTML. |
| Jquery.param () |
Creates a serialized representation of an array or object, suitable for use in URL query strings or Ajax requests. |
| Jquery.post () |
Load data from the server using an HTTP POST request. |
| . Serialize () |
Serializes the contents of the form into a string. |
| . Serializearray () |
Serializes the form element, returning the JSON data structure. |
jquery Ajax backwards and forwards, all functions and query links