top button
Flag Notify
Site Registration

How does jQuery $.get() Method work?

0 votes
274 views
How does jQuery $.get() Method work?
posted Jul 28, 2014 by Karamjeet Singh

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The $.get() method of jquery requests data from the server with an HTTP GET request.

Syntax: $.get(URL,callback);
The required URL parameter specifies the URL you wish to request.

The optional callback parameter is the name of a function to be executed if the request succeeds.

answer Jul 30, 2014 by Rahul Mahajan
...