View more demos...

Dribbble


Code:

SocialDig({
    selector: '.dribbble',
    service: 'dribbble',
    user: 'kjbrum',
    auth: 'xxxxx'
}, function(data) {
    if (data.length > 0) {
        var list = document.createElement('div');
        list.className = 'g g-s-2 shots';

        // Loop through the shots
        data.forEach(function(el, idx, arr) {
            if (idx < 4) {
                var item = document.createElement('div');
                item.className = 'gi shot';

                item.innerHTML = '<a href="' + el.html_url + '" target="_blank"><img src="' + el.images.normal + '" alt="' + el.title + '" title="' + el.title + '"><br>' + el.title + '</a>';

                // Add the new item to the list
                list.appendChild(item);
            }
        });

        // Add the list to the page
        document.querySelector('.dribbble').appendChild(list);
    }
});

Results: