Ajax post request with jQuery.post method
With jQuery.post method, we can make Ajax http post request to server. We can send or post data to server. It requires four arguments, first is URL on which we need to send post data, second is data object which will send with post request., third is call back function which is called on get request complete, fourth parameter specifies the expected response format i.e. json, text, xml, html, etc.