JS - Image attribute- Auto alt text
by barkkathulla[ Edit ] 2014-04-05 11:41:27
You can add alternate text in an image by this attribute...
$(document).ready(function() {
$('picturediv').each(function(){
var $pict = $(this);
var filename = $pict.attr('src')
$pict.attr('alt', filename.substring(0, filename.lastIndexOf('.')));
});
});