0PricingLogin
jQuery Academy · Lesson

AJAX Operations

AJAX Operations

Introduction

Hello,

In this lesson, we learn how to interact with the remote server by using jQuery AJAX Methods.

AJAX(Asynchronous Javascript And XML) is a technology that makes data transfer with the Server asynchronously without refreshing the web page.

User experience is positively affected, especially since data can be transferred without refreshing the page.

Ajax Example

Especially, the most popular web applications of the world such as Facebook, Gmail, Youtube use AJAX technology frequently.

In fact, instead of thinking of AJAX as a new technology, you can think of it as a method that provides asynchronous data transfer between server and client using Javascript.

Well, let's give an example of a function using AJAX.

For example, you watched a video on youtube.com and clicked the like button. In this case, our like event is transmitted to youtube servers in the background before the youtube page is refreshed.

This is a process that takes place with an AJAX request.

← Back to jQuery Academy