I pulling html from another page to grab some li elements from it. 
Will $(response) get garbage collected?
function onResponse(response){
    var $keep = $(response).find(".results li").clone();
    items.push($keep);
    $target.append($keep);
}
