The jQuery.post API page provides some examples. They are about 1/3 of the way down the page. The final example on the page shows how to pass this content type to "json" in this method.
jQuery post - jsFiddle :
$(function() {
$.post("/ajax_json_echo/", {html: "stuff"}, function(data) { alert(data.post_response.html);}, "json");
});
, "json" .
, , . Fiddler Firebug , . , ?
, , .
, .