Hello, I have two text boxes, their id are color
and the other one is tamaño
, they receive input data from a page but I do not know how to send my fields to the web service so that I can return my data. the url is where my web service is
$.ajax({
url: '../mesas.php',
type: 'POST',
dataType: 'json',
data: $(this).serialize(),
beforeSend: function () {
$("#color").html();
$("#tamaño").html();
}
})