Answers for "ajax for post data"

0

make ajax request post jquery

$.ajax({
  method: "POST",
  url: "some.php",
  data: { name: "John", location: "Boston" }
})
Posted by: Guest on July-21-2020
0

js ajax post strings

$.ajax({
  type: "POST",
  url: url,
  data: data,
  success: success,
  dataType: dataType
});
Posted by: Guest on October-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language