codice:
$(".uno a").live("click", function(){
    $("#content").empty().html('...');
    var page = $(this).attr('href');
    var myDiv = $(this).html();

// Load
	$('#content').load(page + ' #' + myDiv, function(response, status, xhr) {
	  if (status == "error") {
		$("#content").html("Errore: " + xhr.status + " " + xhr.statusText + " (" + page + ")");
	  }
	});
	
  return false;
  });