ControlledChaos of Controlled Chaos Design
7/20/2017 - 4:33 PM

Add text to image attribute.

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;
	});
});

Text to Image Attribute

jQuery Snippet