Skip to content

Instantly share code, notes, and snippets.

@ioncodes
Last active February 15, 2017 18:06
Show Gist options
  • Save ioncodes/f2c690e8edb8d30a12154861863d95e8 to your computer and use it in GitHub Desktop.
Save ioncodes/f2c690e8edb8d30a12154861863d95e8 to your computer and use it in GitHub Desktop.
Scrapes all the glyphicons classnames from http://glyphicons.bootstrapcheatsheets.com/
var spans = document.getElementsByTagName('SPAN');
var names = [];
for(var i = 0; i < spans.length; i++) {
if(spans[i].className.indexOf('glyphicon') !== -1) {
names.push(spans[i].className.split(' ').pop());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment