Pages

Fix Broken Img Links - jQuery

It is exceptionally drawn out and additionally rankling to check every last picture broken connection and fix it physically. To spare yourself from this inconvenience, you can utilize the below script to alter all the broken connections without a moment's delay.
$('img').error(function(){
$(this).attr('src', ‘img/broken.png’);
});