$(document).ready(function() { $('img').each(function() { var altText = $(this).attr('alt'); var titleText = $(this).attr('title'); if (altText === '') { $(this).attr('alt', ' '); } if (titleText === '') { $(this).attr('title', ' '); } }); }); $(document).ready(function() { $('img').each(function() { if (!$(this).attr('alt')) { $(this).attr('alt', ' '); } }); });