Jquery Ajax
jQuery AJAX Methods
jQuery AJAX Methods
AJAX is the fine art of exchanging information amongst a server, together with update parts of a spider web page - without reloading the whole page.The next tabular array lists all the jQuery AJAX methods:
| Method | Description |
|---|---|
| $.ajax() | Performs an async AJAX request |
| $.ajaxPrefilter() | Handle custom Ajax options or alteration existing options earlier each asking is sent together with earlier they are processed past times $.ajax() |
| $.ajaxSetup() | Sets the default values for futurity AJAX requests |
| $.ajaxTransport() | Creates an object that handles the actual transmission of Ajax data |
| $.get() | Loads information from a server using an AJAX HTTP GET request |
| $.getJSON() | Loads JSON-encoded information from a server using a HTTP GET request |
| $.parseJSON() | Deprecated inward version 3.0, role JSON.parse() instead. Takes a well-formed JSON string together with returns the resulting JavaScript value |
| $.getScript() | Loads (and executes) a JavaScript from a server using an AJAX HTTP GET request |
| $.param() | Creates a serialized representation of an array or object (can locomote used equally URL enquiry string for AJAX requests) |
| $.post() | Loads information from a server using an AJAX HTTP POST request |
| ajaxComplete() | Specifies a percentage to locomote when the AJAX asking completes |
| ajaxError() | Specifies a percentage to locomote when the AJAX asking completes amongst an error |
| ajaxSend() | Specifies a percentage to locomote earlier the AJAX asking is sent |
| ajaxStart() | Specifies a percentage to locomote when the kickoff AJAX asking begins |
| ajaxStop() | Specifies a percentage to locomote when all AJAX requests convey completed |
| ajaxSuccess() | Specifies a percentage to locomote when an AJAX asking completes successfully |
| load() | Loads information from a server together with puts the returned information into the selected element |
| serialize() | Encodes a gear upwards of shape elements equally a string for submission |
| serializeArray() | Encodes a gear upwards of shape elements equally an array of names together with values |
Comments
Post a Comment