jquery ajax post php code example
Example 1: jquery post
$.post( "test.php", { name: "John", time: "2pm" })
.done(function( data ) {
alert( "Data Loaded: " + data );
});
Example 2: jquery post
$.post( "test.php", { name: "John", time: "2pm" } );