Answers for "REST API Ajax POST example"

2

ajax post request

$.post('http://example.com/form.php', {category:'client', type:'premium'}, function(response){ 
      alert("success");
      $("#mypar").html(response.amount);
});
Posted by: Guest on March-12-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language