Skip to content

Instantly share code, notes, and snippets.

@ioncodes
Created February 16, 2017 09:54
Show Gist options
  • Save ioncodes/183e6accea111fe5c3e10ca71be0e050 to your computer and use it in GitHub Desktop.
Save ioncodes/183e6accea111fe5c3e10ca71be0e050 to your computer and use it in GitHub Desktop.
var ficons = document.getElementsByTagName('I');
var icons = [];
for(var i = 0; i < ficons.length; i++) {
if(ficons[i].className.indexOf(' ') === -1) {
icons.push(ficons[i].className);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment