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...

Special Methods for Event jQuery Handlers

In addition to the bind/delegate/on methods, jQuery provides direct methods for handling events. The...

Trigger method in jQuery

The method trigger is used to call event handlers manually. For example, by calling the trigger meth...

delegate and on methods In jQuery

delegate method Earlier, I mentioned that the method bindonly adds event handlers to elements that a...