Answers for "ajax send multiple data to php"

1

ajax send multiple data to php

$.ajax({
	url: "/something",
    type: "GET",
    data: {p1: "value1", p2: "value2"}, // multiple data we want to send
    success: function(data){ 
   		console.log(data);
    }
}).done(function(){
    console.log("Success.");
}).fail(function(){
    console.log("An error has occurred.");
}).always(function(){
  	console.log("Complete.");
});
Posted by: Guest on November-26-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language