-
Correct syntax for $.post() method is ____________.
-
- $.post(URL,callback)
- $.post(data,callback)
- $.post(URL,data,callback)
- $.post(URL,data)
- None of these
Correct Option: C
The correct syntax for $.post() method is $.post(URL,data,callback). URL is the URL we want to request for. Callback is the name of the function that is to be executed. Data specifies the data that is to be send with the request.