Código Javascript
:
Ver original<script>
$("#formcontract").submit(function(e) {
var url = "autorizar.php"; // the script where you handle the form input.
$.ajax({
type: "POST",
url: url,
data: $("#formcontract").serialize(), // serializes the form's elements.
success: function(data)
{
alert(data); // show response from the php script.
}
});
e.preventDefault(); // avoid to execute the actual submit of the form.
});
</script>
con este codigo si que los recoje