$.ajax({
url: "http://example.com/",
type: "POST",
cache: false,
dataType: "json",
data: {"test" : 123 },
success: function(data, dataType){
},
error: function(XMLHttpRequest, textStatus, errorThrown){
},
complete: function(XMLHttpRequest, textStatus){
}
});