animate ajax content

animate ajax content

hi guys how to load some content through a ajax call en and show it on the page with an animation.

jQuery(document).ready(function() {
    $('.accordion .row').click(function() {
        var test = $(this);
        $(test).children("div").toggle('slow');
       
        $.get('/search/test.html', function(data) {
            $(test).append(data).show(); //this is not working
        });
    });
});