Home › Forums › CSS › Make img alt visible › Reply To: Make img alt visible
March 21, 2016 at 2:54 am
#239642
Participant
This finally worked:
</script><script language="javascript" type="text/javascript">
//<![CDATA[
$(document).ready(function(){
$('div a').each(function(){
var alt = $(this).children('img').attr('alt');
$(this).append('<div class="bildlegende">' + alt + '</div>');
});
});
//]]>
</script>
Thanks for all the help…