1 2 3 4 5 6 7 8 9
(function($){ $('.entry img').each(function(){ var alt = $(this).attr('alt'); if (alt != ''){ $(this).after('<span class="caption">'+alt+'</span>'); } }); })(jQuery);