<script type='text/javascript'>
$(window).load(function(){
$('img.catalog').each(function() {
$(this).after( "<div class='img-title'>" + $(this).attr('title') + "</div>" );
});
});
</script>
$('img').each(function () {
$(this).after($('<span>').html($(this).attr('alt')));
})
$('img').each(function () {
if (this.readyState != 'complete') {
$(this).on('error', function () {
$(this).replaceWith($('<span>').html($(this).attr('alt')));
});
}
});
$('img').each(function () {
$(this).replaceWith($('<span>').html($(this).attr('alt')));
});