$("#send").click(function(){
$.post("test.php", { name: "John", time: "2pm" } );
$(location).attr('href', '/test.php');
});
<?php
// файл test.php
echo $_POST['name'];
echo $_POST['time'];
?>
$("body").append("<form id=form_submit method=POST><input type=hidden value=John name=name><input type=hidden value=2pm name=time></form>");
$("#form_submit").submit();
$("#send").click(function(){
$.post("test.php", { name: "John", time: "2pm" }, function(){
$(location).attr('href', '/test.php');
});
});
$("#send").click(function(){
console.log('hi!');
$.post("test.php", { name: "John", time: "2pm" } );
$(location).attr('href', '/test.php');
});