jQuery(function() {

    jQuery.getFeed({
        //url: 'proxy.php?url=http://buisconsultancy.nl/cats/rss/',
        url: 'proxy.php?url=http://buisconsultancy.nl/tag/top-left/rss',
        success: function(feed) {

            
            var html = '';
            
            for(var i = 0; i < feed.items.length && i < 5; i++) {
            
                var item = feed.items[i];
                
                html += '<p>'
                + item.description
                + '</p>';
            }
            
            jQuery('#tl').append(html);
        }    
    });
});

/*
jQuery(function() {

    jQuery.getFeed({
        url: 'proxy.php?url=http://buisconsultancy.nl/tag/top-left/rss',
        success: function(feed) {

            
            var html = '';
            
            for(var i = 0; i < feed.items.length && i < 5; i++) {
            
                var item = feed.items[i];
                
                html += item.description;
            }
            alert(html);
            jQuery('#tl').append(html);
        }    
    });
});
*/