Code has been added to clipboard!
The .post() Method in jQuery AJAX
Example
$.ajax({
type: "POST",
url: "url",
data: "data" | {data},
success: function(){ /* executable code */ },
dataType: "dataType"
});
Code has been added to clipboard!
$.ajax({
type: "POST",
url: "url",
data: "data" | {data},
success: function(){ /* executable code */ },
dataType: "dataType"
});