Skip to content

Instantly share code, notes, and snippets.

@johnpmorris
Created November 7, 2015 01:20
Show Gist options
  • Save johnpmorris/88d37848f6330cc0e103 to your computer and use it in GitHub Desktop.
Save johnpmorris/88d37848f6330cc0e103 to your computer and use it in GitHub Desktop.
$(function() {
$.getJSON('https://api.dribbble.com/v1/users/USERNAME/shots?access_token=TOKEN&callback=?', function(resp) {
if (resp.data.length > 0) {
$.each(resp.data.reverse(), function(i, val) {
$('#dribbble').prepend(
'<div class="dribbble-shot"><div class="dribbble-image" style="background-image: url('+val.images.hidpi+')"><a href="'+val.html_url+'"></a><h3>'+val.title+'</h3></div></div>'
);
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment