Skip to content

Instantly share code, notes, and snippets.

@rdlh
Created August 31, 2017 14:56
Show Gist options
  • Save rdlh/78b2d34b6af7973ab9ad03ba75867a59 to your computer and use it in GitHub Desktop.
Save rdlh/78b2d34b6af7973ab9ad03ba75867a59 to your computer and use it in GitHub Desktop.
var i = 0
$('.Grid-cell').each(function() {
i++
var id = $(this).find('a').attr('href').split('/')[3]
setTimeout(function() {
window.open("https://thenounproject.com/icon/" + id + "/download/color/000000/svg/");
}, i * 1000)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment