Below is the code I am working on, my goal is to call the ajax to return some data and append that data on the button/$(this) that is clicked.  
$('.click_me').click(function(){
    $.ajax({
        type: 'POST',
        url: 'ajax/get_list.php'
    }).done(function(data){
        $(this).append(data);
    });
});
 
     
    