JQuery AJAX request, retrieve only a certain div?

JQuery AJAX request, retrieve only a certain div?

Hi guys,

I'm doing an AJAX post to send some form details and retrieve the results. But the results come back as a full page, including everything in the HEAD. How can I only retrieve the #results div?

My code at the moment:
   $('.webform a').click(function() {
      var day = $(this).attr('href');
      $.post('/Default.aspx?CCID=3872&FID=24892&ExcludeBoolFalse=True&ID=/results','&CAT_Custom_66898='+day,
      function(data){
         $('body').append(data);
      });
      return false;
   });


Thanks for the help.