<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$('.ajax').click(function(){
$('#block_id').load($(this).attr('href'));
return false;
});
});
</script>
</head>
<body>
<a class="ajax" href="http://link">Вставить html-код в div</a><br/><br/>
<div id="block_id">
Сюда будет вставлен контент
</div>
</body>
</html>