jQuery AJAX explained with 3 examples

What is jQuery AJAX?

jQuery continues its slogan “write less do more” in the case of AJAX as well. jQuery provides a handy set of methods to work with AJAX requests that otherwise needs a lot of coding in case you are making JavaScript AJAX call.

This chapter explains how to use AJAX methods with examples.

AJAX examples in this tutorial

A basic ajax example of loading data from text file

AJAX example with PHP file to display entered info without refresh

AJAX error handling example

All these examples are explained below.

So what is AJAX in short?

These days we usually come across websites where data updates automatically without needing to refresh or reloading a web page. For example, Gmail automatically loads new emails. Facebook also loads newsfeed and other stuff automatically.

This is done by using AJAX that we can define as loading data in the background without refreshing a website and display it on a webpage.

Another example can be a sign-up page or create an account where we see no page refresh while account creates without a page is loaded again.

AJAX stands for Asynchronous JavaScript and XML. As the name shows, it uses JavaScript to fulfill the desired action. Normally, we have to use lengthy JavaScript code to accomplish that along with browser compatibility issues as different browsers require different AJAX syntax for implementation.

jQuery plays its role in that case and thanks to the team of jQuery that made this job quite easier for developers by providing AJAX jQuery methods and addressing the compatibility issues along with simplifying AJAX based calls.

jQuery’s ajax method

The jQuery $.ajax() method is used to perform an AJAX (asynchronous ) HTTP request.

How to use the ajax method?

Following is the syntax of ajax method:

$.ajax(name:value options)

Where

  • name: value options are set of pairs that specify AJAX request. All name/value parameters are optional that are described below.
  • URL: URL to which request is sent in the string format.
  • ajax async: The default value is set to be true, that means performing request asynchronously in AJAX.
  • data: AJAX data to be sent to the server along with a request.
  • dataType: defining the ajax data type expected from the server as a response.
  • dataFilter: As server sends back data. The dataFilter function is used to handle the raw data sent from the server in advance. The complete syntax will be dataFilter(data, type).
  • error: If a request is failed in ajax this callback function is used. The complete syntax is error(xhr,status,error). See example below to learn jQuery ajax error handling.
  • jQuery ajax success: If AJAX request succeeds, A callback function to run. The complete syntax of ajax success: success (result, status, xhr).
  • global: A Boolean with default value as True. It specifies whether global AJAX event handlers to be triggered or not.
  • jsonp: This overrides the callback function name in a jsonp request.
  • processData: A Boolean with a default value of True. It tells whether to convert data into query-string or not.
  • ajax timeout: Local timeout for the request in milliseconds.
  • type: request type (Get or post). The default is Get.
  • username: The user for HTTP authentication access request.
  • password: password for HTTP authentication access request. 

jQuery AJAX example

The following is an AJAX example. The example loads a text file by using jQuery $.ajax method placed in the same directory as the source file that calls it. After loading, as the button is clicked, it will display loaded data from the text file to ajaxrequest Div. See demo online by clicking the link:

jQuery ajax data

Experience this example online



AJAX jQuery example with PHP file to make AJAX Request

In the example below, we will use text box entered data. The entered text in name and location boxes will be assigned to the variables in jQuery. After the button is clicked the jQuery $.ajax() method will call URL= post_test.php file. This will receive sent parameters, name, location and return output string. All will be done without reloading the web page.

Note: Post_test.php file is placed at the same location as our HTML file where ajax method is used.

If AJAX call is successful, the callback function will display returned data into postrequest Div. See demo online by clicking the link below:

jQuery ajax

Experience this example online

First post_test.php code



HTML file using $.ajax() method



This is just a basic example of using $.ajax() with PHP file sending text boxes data. In real-time applications, you may need to return database driven data. If you learned this properly and understand how to use MySQL and PHP then you are almost ready to use database driven data for AJAX requests.

AJAX error handling example

Following is the same example as above with jQuery ajax error handling. In that example, as a wrong file name is given, it will show an alert by using ajax error parameter:

jQuery ajax error handling

Experience this example online



Important methods of AJAX to learn

Generally ajax method is not used directly. Other available high level methods that are easier to use like $.get() and $.post() are used to perform ajax operations. These methods use ajax method underway.

jQuery $.post() method

jQuery ajaxSetup method

jQuery load method

jQuery post method

jQuery get method


Was this article helpful?

Related Articles

Leave A Comment?