summaryrefslogtreecommitdiffstats
path: root/source/javascripts/caption.js
blob: 271c4283980b0d25f214ff20ca366c9dfa31287b (plain)
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);