This is a small script, which change the alt attribute of all img (images) tags on the page:
$(document).ready(function() {
$(“img”).each(function(i) {
this.alt = ‘your new alt text’;
} );
})
Another complex script, which change the alt attribute of all img (images) tags on the page, to the title of the page, if the alt attribute is not [...]
Posts Tagged ‘tags’
JQuery script to change the alt attribute of all images
Posted in Technical, javascript, tagged change alt, html, image alt, javascript, jquery, tags on July 27, 2008 | Leave a Comment »