jQuery global ajax events

In the previous paragraphs, we looked at how to use callback functions to process the response from ...

jQuery ajax method

The get, post, load methods discussed earlier are very easy to use and more than cover most of the n...

jQuery getScript method

Using the method, getScript we can additionally load scripts onto the page. This method accepts the ...

Getting JSON data in jQuery

We saw earlier that we can use the get method to get data in json format. However, the jQuery librar...

POST requests in jQuery

Unlike GET requests, POST request data is not transmitted in the request line, but in its body. A co...

jqXHR object

In the previous paragraph, we saw that a jqXHR object can be used in a method callback function. In ...

jQuery AJAX GET method

The method getmakes a GET request to the server, that is, all requested data is transmitted in the q...

jQuery AJAX load method

The method loadloads the HTML code received from the server into an element on the page. It accepts ...

Introduction to AJAX

AJAX technology is a technology for asynchronous interaction with the server. Thanks to this technol...