jQuery provides various methods like ajax, load, get,
post, getJSON, getJSON etc to make an
Ajax call. In this post we shall see on how to use the post() method to make an
Ajax call.
The post() method is used to send HTTP POST requests to the server, this method can process the response data from the server in any of the following formats.
HTML
XML
JSON
Text
The
Syntax for the post() method is as follows.
$.post("<server URL>",<POST parameters>, successHandlerFunction());
The post() method is used to send HTTP POST requests to the server, this method can process the response data from the server in any of the following formats.
HTML
XML
JSON
Text
$.post("<server URL>",<POST parameters>, successHandlerFunction());
No comments:
Post a Comment