jQuery.post()

Send data to the server using a HTTP POST request.

jQuery.post(url, data, success, dataType)🡢 jqXHR

url StringA string containing the URL to which the request is sent.
data PlainObject, StringA plain object or string that is sent to the server with the request.
success FunctionA callback function that is executed if the request succeeds. Required if dataType is provided, but can be null in that case.
dataType StringThe type of data expected from the server. Default: Intelligent Guess (xml, json, script, text, html).

jQuery.post(settings)🡢 jqXHR

settings PlainObjectA set of key/value pairs that configure the Ajax request. All properties except for url are optional. A default can be set for any option with $.ajaxSetup(). See jQuery.ajax( settings ) for a complete list of all settings. Type will automatically be set to POST.

This is a shorthand Ajax function, which is equivalent to:

$.ajax({
  type: "POST",
  url: url,
  data: data,
  success: success,
  dataType: dataType,
});

The success callback function is passed the returned data, which will be an XML root element or a text string depending on the MIME type of the response. It is also passed the text status of the response.

As of jQuery 1.5, the success callback function is also passed a "jqXHR" object (in jQuery 1.4, it was passed the XMLHttpRequest object).

Most implementations will specify a success handler:

$.post("ajax/test.html", function (data) {
  $(".result").html(data);
});

This example fetches the requested HTML snippet and inserts it on the page.

Pages fetched with POST are never cached, so the cache and ifModified options in jQuery.ajaxSetup() have no effect on these requests.

The jqXHR Object

As of jQuery 1.5, all of jQuery's Ajax methods return a superset of the XMLHTTPRequest object. This jQuery XHR object, or "jqXHR," returned by $.post() implements the Promise interface, giving it all the properties, methods, and behavior of a Promise (see Deferred object for more information). The jqXHR.done() (for success), jqXHR.fail() (for error), and jqXHR.always() (for completion, whether success or error; added in jQuery 1.6) methods take a function argument that is called when the request terminates. For information about the arguments this function receives, see the jqXHR Object section of the $.ajax() documentation.

The Promise interface also allows jQuery's Ajax methods, including $.get(), to chain multiple .done(), .fail(), and .always() callbacks on a single request, and even to assign these callbacks after the request may have completed. If the request is already complete, the callback is fired immediately.

// Assign handlers immediately after making the request,
// and remember the jqxhr object for this request
var jqxhr = $.post("example.php", function () {
  alert("success");
})
  .done(function () {
    alert("second success");
  })
  .fail(function () {
    alert("error");
  })
  .always(function () {
    alert("finished");
  });

// Perform other work here ...

// Set another completion function for the request above
jqxhr.always(function () {
  alert("second finished");
});

Deprecation Notice

The jqXHR.success(), jqXHR.error(), and jqXHR.complete() callback methods are removed as of jQuery 3.0. You can use jqXHR.done(), jqXHR.fail(), and jqXHR.always() instead.

Request the test.php page, but ignore the return results.

HTML
$.post("test.php");
DEMO

Request the test.php page and send some additional data along (while still ignoring the return results).

HTML
$.post("test.php", { name: "John", time: "2pm" });
DEMO

Pass arrays of data to the server (while still ignoring the return results).

HTML
$.post("test.php", { "choices[]": ["Jon", "Susan"] });
DEMO

Send form data using Ajax requests

HTML
$.post("test.php", $("#testform").serialize());
DEMO

Alert the results from requesting test.php (HTML or XML, depending on what was returned).

HTML
$.post("test.php", function (data) {
  alert("Data Loaded: " + data);
});
DEMO

Alert the results from requesting test.php with an additional payload of data (HTML or XML, depending on what was returned).

HTML
$.post("test.php", { name: "John", time: "2pm" }).done(function (data) {
  alert("Data Loaded: " + data);
});
DEMO

Post to the test.php page and get content which has been returned in json format (<?php echo json_encode(array("name"=>"John","time"=>"2pm")); ?>).

HTML
$.post(
  "test.php",
  { func: "getNameAndTime" },
  function (data) {
    console.log(data.name); // John
    console.log(data.time); // 2pm
  },
  "json"
);
DEMO

Post a form using Ajax and put results in a div

JS
<form action="/" id="searchForm">
  <input type="text" name="s" placeholder="Search..." />
  <input type="submit" value="Search" />
</form>
<!-- the result of the search will be rendered inside this div -->
<div id="result"></div>
HTML
// Attach a submit handler to the form
$("#searchForm").submit(function (event) {
  // Stop form from submitting normally
  event.preventDefault();

  // Get some values from elements on the page:
  var $form = $(this),
    term = $form.find("input[name='s']").val(),
    url = $form.attr("action");

  // Send the data using post
  var posting = $.post(url, { s: term });

  // Put the results in a div
  posting.done(function (data) {
    var content = $(data).find("#content");
    $("#result").empty().append(content);
  });
});
DEMO

Looking for a Web Developer?

👋

Hi! I'm Basti, author of this site. If you are looking for a web developer with 15+ years of experience, holla at me!

Be it the good 'ol jQuery, vanilla JS or modern frameworks like Vue and Svelte, front- or backend, I can help you.

Just write me at jobs@jqapi.com :)