Skip to content

Instantly share code, notes, and snippets.

@tarex
Last active September 29, 2016 10:37
Show Gist options
  • Save tarex/9e892938a9127e7c40687630e83f11a5 to your computer and use it in GitHub Desktop.
Save tarex/9e892938a9127e7c40687630e83f11a5 to your computer and use it in GitHub Desktop.
font awesome grabbing from dom
var all = [];
jQuery('#icons section').each(function(index, section) {
var id = jQuery(this).attr('id');
jQuery('#'+ id + ' a').each(function(index, iconrow) {
all.push({
name: jQuery(this).text().replace('Example of','').replace(/^\s+/g, ""),
className: jQuery(this).children('i').attr('class')
});
});
});
console.log(all);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment