Skip to content

Instantly share code, notes, and snippets.

@barisusakli
Last active August 29, 2015 14:02
Show Gist options
  • Save barisusakli/457175e94cc1473522be to your computer and use it in GitHub Desktop.
Save barisusakli/457175e94cc1473522be to your computer and use it in GitHub Desktop.
grab fontawesome icons
var str = '';
$('.fontawesome-icon-list i.fa').each(function() {
if (str.indexOf($(this)[0].outerHTML) === -1 && $(this).parent().html().indexOf('alias') === -1)
str += $(this)[0].outerHTML;
});
console.log(str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment