Add text to image attribute.
// Prepend image alternate text jQuery(document).ready( function() { jQuery( 'img' ).attr( 'alt', function( i, val ) { return 'Image may contain: ' + val; }); });
jQuery Snippet