jQuery get() methodThe get() method is an inbuilt function in jQuery. It loads data from the server using the HTTP GET request. It is used for making a simple GET request. It returns XMLHttpRequest object. SyntaxParameter ValuesThis method includes four parameter values in which one is mandatory, and others are optional. We must have to include the URL parameter to the get() method. The parameter values of the get() method are defined in the following table.
Now, let's see a simple example of using the get() method. ExampleIn this example, we are making a get request by using the get() method. We are using two parameters of the get() method that are URL and a callback function. The URL parameter is set to the value test.html. We are using two parameters of the callback function that are data and status in which the first parameter holds the data of the requested page, and the second parameter holds the request status. In the output, we can see the data load from the server, and the status of the request is success. test.html Example2.html Test it NowOutput After the execution of the above code, the output will be - After clicking the given button, the output will be - Next TopicjQuery grep() method |