Created
February 16, 2017 09:54
-
-
Save ioncodes/183e6accea111fe5c3e10ca71be0e050 to your computer and use it in GitHub Desktop.
Scrapes icons from http://zurb.com/playground/foundation-icon-fonts-3#allicons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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