Simple Ajax loading with Jquery

For the sake of my memory I’m posting a simple jQuery ajax routine.

      $('a.ajax-enabled').click(function(evt){
         evt.preventDefault();
         $('#content').load($(this).attr('href') + ' #content');
      });