This file contains 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
// Font Awesome Cheatsheet to CSV | |
var awesomeOutput = ""; | |
$(".col-md-4.col-sm-6.col-lg-3").each(function (i, element) { // selects a Font Awesome cheatsheet item | |
// Unicode value (i.e. "") | |
var unicode = $(element).children(".muted").text(); // the unicode value is in a child span element with class "muted", this grabs it and "removes" the surrounding [brackets] | |
// CSS class name (i.e. "fa-youtube-square") |