"use strict"; $("#icons li").each(function () { $(this).append('
' + $(this).attr('class') + '
'); }); $("#icons li").click(function () { $(".icon-name").fadeOut(); $(this).find('.icon-name').fadeIn(); });