$( "#id or class" ).load( "test.php", function() {
$("id or class").html('do something for other id or class')
});
$.post( "put url here")
.done(function( data ) {
// put here jquery code
});
$.post( "put url here ", function( data ) {
// put here jquery code
});