накидал.
пс: на работе завал. буду отвечать по возможности
<html>
<head>
<title>Тестирование</title>
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script>
function loadpage (ths) {
var url = ths.getAttribute('href');
$.post("test.php", { name: "John", time: "2pm" },
function(data){
console.log("Data Loaded: " + data);
$('div').html(data);
});
}
</script>
</head>
<body>
<a href="http://javascript.ru" onclick="loadpage(this); return false;">link 1</a>
<a href="http://javascript.ru" onclick="loadpage(this); return false;">link 2</a>
<div></div>
</body>
</html>