https://api.jquery.com/jquery.post/
Jquery Examples Posting receiving,
1 2 3 4 5 6 |
$.post( "ajax/test.html", function( data ) { $( ".result" ).html( data ); }); $.post( "test.php", { name: "John", time: "2pm" } ); |
https://api.jquery.com/jquery.post/
Jquery Examples Posting receiving,
1 2 3 4 5 6 |
$.post( "ajax/test.html", function( data ) { $( ".result" ).html( data ); }); $.post( "test.php", { name: "John", time: "2pm" } ); |