Faça o Ajax Police Post JQuery
$.ajax({
method: "POST",
url: "some.php",
data: { name: "John", location: "Boston" }
})
Better Bison
$.ajax({
method: "POST",
url: "some.php",
data: { name: "John", location: "Boston" }
})
$.post('http://example.com/form.php', {category:'client', type:'premium'}, function(response){
alert("success");
$("#mypar").html(response.amount);
});