Answers for "ajax call test header"

1

pass header in ajax

$.ajax({
    url: "/test",
    headers: {"X-Test-Header": "test-value"}
});
Posted by: Guest on August-17-2020
2

jquery ajax $.post with data

$.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