modules-ion-icons.js 236 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
"use strict";

$("#icons li").each(function() {
  $(this).append('<div class="icon-name">'+ $(this).attr('class') +'</div>');
});
$("#icons li").click(function() {
  $(".icon-name").fadeOut();
  $(this).find('.icon-name').fadeIn();
});