Very basic Ajax example (obtrusive)
Example
Source Code
$(document).ready(function(){
$('.ajaxtrigger').click(function(){
$('#target').load('ajaxcontent.html');
});
});
http://icant.co.uk/articles/things-to-know-about-ajax/very-simple-ajax.html#