Can GET function process HTML

Can GET function process HTML

I am using a GET function to process an external file, but I need only part of it.


  1. $.ajax({
  2.                     type: 'GET',
  3.                     url: 'topstatistics_nieuwsbe.html',
  4.                     dataType: 'html',
  5.                     success: function(html, textStatus) {
  6.                         $('#summary').append(html);
  7.                        
  8.                     },
  9.                     error: function(xhr, textStatus, errorThrown) {
  10.                             //alert('An error occurred! ' + ( errorThrown ? errorThrown : xhr.status );
  11.                 } // end error
  12.                    
  13.           }); // end ajax


So how to 'process' html : e.g. how to remove a  certain div inside the html ?